Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add icons to icon library #199

Merged
merged 5 commits into from
Mar 27, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions src/icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1806,6 +1806,30 @@ export const VolumeOnOutline = () => (
</svg>
);

export const MinusOutline = () => (
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, changed to use that source

<svg viewBox="0 0 20 21" xmlns="http://www.w3.org/2000/svg" fill="none">
<path
d="M15.834 11.3334H4.16732C3.70732 11.3334 3.33398 10.9609 3.33398 10.5001C3.33398 10.0392 3.70732 9.66675 4.16732 9.66675H15.834C16.2948 9.66675 16.6673 10.0392 16.6673 10.5001C16.6673 10.9609 16.2948 11.3334 15.834 11.3334"
fill="white"
mikeldking marked this conversation as resolved.
Show resolved Hide resolved
fill-opacity="0.9"
/>
<mask
id="mask0_1981_1616"
maskUnits="userSpaceOnUse"
x="3"
y="9"
width="14"
height="3"
>
<path
d="M15.834 11.3334H4.16732C3.70732 11.3334 3.33398 10.9609 3.33398 10.5001C3.33398 10.0392 3.70732 9.66675 4.16732 9.66675H15.834C16.2948 9.66675 16.6673 10.0392 16.6673 10.5001C16.6673 10.9609 16.2948 11.3334 15.834 11.3334"
fill="white"
mikeldking marked this conversation as resolved.
Show resolved Hide resolved
/>
</mask>
<g mask="url(#mask0_1981_1616)"></g>
</svg>
);

//W
//X
//Y
Expand Down
Loading