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(Icon): add TemporaryProfile Icon #2626

Merged
merged 3 commits into from
Nov 26, 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
1 change: 1 addition & 0 deletions icons/_assets/thunderclock.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions icons/src/Thunderclock/content.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"width": 15,
"height": 15,
"block": "<path fill=\"currentColor\" fill-rule=\"evenodd\" d=\"M43.67 66.305a1.382 1.382 0 0 0-1.294-.586l-14.338 1.616V46.87c0-.624-.43-1.168-1.042-1.32a1.38 1.38 0 0 0-1.548.681L8.986 76.8c-.24.447-.211.988.076 1.406.288.418.784.643 1.294.587l14.338-1.616v20.462A1.363 1.363 0 0 0 26.07 99c.5 0 .971-.27 1.214-.72l16.463-30.57a1.35 1.35 0 0 0-.077-1.405Z\" clip-rule=\"evenodd\"/><path fill=\"currentColor\" d=\"M43.092 27.101a3.83 3.83 0 0 1 7.644-.46l1.38 22.935-3.755.226a3.897 3.897 0 0 1-4.124-3.656L43.092 27.1Z\"/><path fill=\"currentColor\" d=\"M61.75 41.324a3.83 3.83 0 0 1 .459 7.645l-10.094.607a7.658 7.658 0 0 1-8.104-7.185l17.738-1.067Z\"/><path fill=\"currentColor\" d=\"M79.472 10.266C71.494 3.19 60.89 0 49.609 1.274 27.336 3.796 9.089 23.328 8.002 45.33c-.056 1.143.877 2.072 2.021 2.072 1.145 0 2.066-.929 2.128-2.072C13.234 25.356 29.832 7.66 50.078 5.365a38.633 38.633 0 0 1 4.348-.247c8.438 0 16.23 2.849 22.287 8.221 7.015 6.223 10.88 15.117 10.88 25.045 0 20.126-15.943 38.427-35.942 41.75-1.123.186-1.937 1.203-1.807 2.334.129 1.129 1.15 1.944 2.272 1.763 22.028-3.554 39.62-23.693 39.62-45.847 0-11.117-4.355-21.102-12.264-28.118Z\"/>"
}
8 changes: 8 additions & 0 deletions icons/src/Thunderclock/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import React from 'react'
import { Icon, IconProps } from '@welcome-ui/icon'

import content from './content.json'

export const ThunderclockIcon: React.FC<IconProps> = props => {
return <Icon alt="Thunderclock" content={content} {...props} />
}
1 change: 1 addition & 0 deletions icons/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ export declare const TargetIcon: React.FC<IconProps>
export declare const TeepeeIcon: React.FC<IconProps>
export declare const ThumbDownIcon: React.FC<IconProps>
export declare const ThumbUpIcon: React.FC<IconProps>
export declare const ThunderclockIcon: React.FC<IconProps>
export declare const TiktokIcon: React.FC<IconProps>
export declare const TrashIcon: React.FC<IconProps>
export declare const TreeIcon: React.FC<IconProps>
Expand Down
1 change: 1 addition & 0 deletions icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,7 @@ export { TargetIcon } from './Target'
export { TeepeeIcon } from './Teepee'
export { ThumbDownIcon } from './ThumbDown'
export { ThumbUpIcon } from './ThumbUp'
export { ThunderclockIcon } from './Thunderclock'
export { TiktokIcon } from './Tiktok'
export { TrashIcon } from './Trash'
export { TreeIcon } from './Tree'
Expand Down
3 changes: 2 additions & 1 deletion packages/IconFont/src/unicode.json
Original file line number Diff line number Diff line change
Expand Up @@ -295,5 +295,6 @@
"arrow_line_right": "0xF227",
"arrow_line_down": "0xF228",
"arrow_line_up": "0xF229",
"symbol": "0xF22A"
"symbol": "0xF22A",
"thunderclock": "0xF22B"
}
1 change: 1 addition & 0 deletions website/build-app/components/IconsList/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ export const miscellaneous: IconProps['name'][] = [
'success',
'certified',
'connection',
'thunderclock',
]

export const player: IconProps['name'][] = [
Expand Down