Skip to content

Commit

Permalink
feat(Icon): replace TemporaryProfileIcon with ThunderclockIcon
Browse files Browse the repository at this point in the history
  • Loading branch information
cnairi committed Nov 26, 2024
1 parent 81a6c7f commit da3bb25
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
File renamed without changes
8 changes: 0 additions & 8 deletions icons/src/TemporaryProfile/index.tsx

This file was deleted.

File renamed without changes.
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} />
}
2 changes: 1 addition & 1 deletion icons/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export declare const TabletIcon: React.FC<IconProps>
export declare const TagIcon: React.FC<IconProps>
export declare const TargetIcon: React.FC<IconProps>
export declare const TeepeeIcon: React.FC<IconProps>
export declare const TemporaryProfileIcon: React.FC<IconProps>
export declare const Thunderclock: React.FC<IconProps>
export declare const ThumbDownIcon: React.FC<IconProps>
export declare const ThumbUpIcon: React.FC<IconProps>
export declare const TiktokIcon: React.FC<IconProps>
Expand Down
2 changes: 1 addition & 1 deletion icons/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export { TabletIcon } from './Tablet'
export { TagIcon } from './Tag'
export { TargetIcon } from './Target'
export { TeepeeIcon } from './Teepee'
export { TemporaryProfileIcon } from './TemporaryProfile'
export { ThunderclockIcon } from './Thunderclock'
export { ThumbDownIcon } from './ThumbDown'
export { ThumbUpIcon } from './ThumbUp'
export { TiktokIcon } from './Tiktok'
Expand Down
2 changes: 1 addition & 1 deletion packages/IconFont/src/unicode.json
Original file line number Diff line number Diff line change
Expand Up @@ -296,5 +296,5 @@
"arrow_line_down": "0xF228",
"arrow_line_up": "0xF229",
"symbol": "0xF22A",
"temporary_profile": "0xF22B"
"thunderclock": "0xF22B"
}
2 changes: 1 addition & 1 deletion website/build-app/components/IconsList/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const miscellaneous: IconProps['name'][] = [
'success',
'certified',
'connection',
'temporary_profile',
'thunderclock',
]

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

0 comments on commit da3bb25

Please sign in to comment.