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 clock-snooze icon #1194 #1195

Merged
merged 3 commits into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 2 additions & 0 deletions projects/ion/src/lib/icon/svgs/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ import {
clipboardPlus,
clipboardX,
clockPlus,
clockSnooze,
clockSolid,
clockStopwatch,
close,
Expand Down Expand Up @@ -465,6 +466,7 @@ export const iconsPaths: Record<string, string> = {
'clipboard-x': clipboardX,
clipboard,
'clock-plus': clockPlus,
'clock-snooze': clockSnooze,
'clock-solid': clockSolid,
'clock-stopwatch': clockStopwatch,
'close-rounded': closeRounded,
Expand Down
3 changes: 3 additions & 0 deletions projects/ion/src/lib/icon/svgs/iconsText/clock-snooze.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default `<path d="M10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C10.1345 18 10.2681 17.9967 10.4008 17.9902C10.5352 17.9835 10.6687 17.9736 10.8012 17.9605C11.3508 17.9059 11.8405 18.3072 11.8951 18.8568C11.9497 19.4063 11.5484 19.8961 10.9988 19.9507C10.8334 19.9671 10.6668 19.9795 10.4992 19.9877C10.3337 19.9959 10.1673 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 10.3368 19.9833 10.67 19.9507 10.9988C19.8961 11.5484 19.4063 11.9497 18.8568 11.8951C18.3072 11.8405 17.9059 11.3508 17.9605 10.8012C17.9866 10.538 18 10.2707 18 10C18 5.58172 14.4183 2 10 2Z"/>
<path d="M10 3.6C10.5523 3.6 11 4.04772 11 4.6V9.38197L13.8117 10.7878C14.3057 11.0348 14.506 11.6355 14.259 12.1295C14.012 12.6235 13.4113 12.8237 12.9173 12.5767L9.55279 10.8944C9.214 10.725 9 10.3788 9 10V4.6C9 4.04772 9.44771 3.6 10 3.6Z"/>
<path d="M14.05 15.5C13.4977 15.5 13.05 15.0523 13.05 14.5C13.05 13.9477 13.4977 13.5 14.05 13.5H18.55C18.9545 13.5 19.3191 13.7436 19.4739 14.1173C19.6287 14.491 19.5431 14.9211 19.2571 15.2071L16.4642 18H18.55C19.1023 18 19.55 18.4477 19.55 19C19.55 19.5523 19.1023 20 18.55 20H14.05C13.6455 20 13.2809 19.7564 13.1261 19.3827C12.9713 19.009 13.0569 18.5789 13.3429 18.2929L16.1358 15.5H14.05Z"/>`;
1 change: 1 addition & 0 deletions projects/ion/src/lib/icon/svgs/iconsText/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export { default as clipboardLocalization } from './clipboard-localization';
export { default as clipboardPlus } from './clipboard-plus';
export { default as clipboardX } from './clipboard-x';
export { default as clockPlus } from './clock-plus';
export { default as clockSnooze } from './clock-snooze';
export { default as clockSolid } from './clock-solid';
export { default as clockStopwatch } from './clock-stopwatch';
export { default as close } from './close';
Expand Down
Loading