Skip to content

Commit

Permalink
feat: add arrow line down icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaacmaamouche committed Aug 30, 2024
1 parent 82b024d commit 3144150
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions icons/_assets/arrow_line_down.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/ArrowLineDown/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=\"M94.316 94.316A5.75 5.75 0 0 0 90.25 84.5H9.75a5.75 5.75 0 0 0 0 11.5h80.5a5.75 5.75 0 0 0 4.066-1.684ZM78.75 44.25a5.753 5.753 0 0 1-1.667 4.082l-23 23a5.75 5.75 0 0 1-4.908 1.609 5.75 5.75 0 0 1-3.545-1.954L22.975 48.332a5.75 5.75 0 0 1 8.108-8.107L44.25 53.392V9.75a5.75 5.75 0 0 1 11.5 0v43.642l13.168-13.167a5.75 5.75 0 0 1 9.832 4.025Z\" clip-rule=\"evenodd\"/>"
}
8 changes: 8 additions & 0 deletions icons/src/ArrowLineDown/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 ArrowLineDownIcon: React.FC<IconProps> = props => {
return <Icon alt="ArrowLineDown" 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 @@ -12,6 +12,7 @@ export declare const AnniversaryIcon: React.FC<IconProps>
export declare const ArchiveIcon: React.FC<IconProps>
export declare const ArrowDownIcon: React.FC<IconProps>
export declare const ArrowLeftIcon: React.FC<IconProps>
export declare const ArrowLineDownIcon: React.FC<IconProps>
export declare const ArrowLineLeftIcon: React.FC<IconProps>
export declare const ArrowLineRightIcon: React.FC<IconProps>
export declare const ArrowLineUpIcon: 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 @@ -10,6 +10,7 @@ export { AnniversaryIcon } from './Anniversary'
export { ArchiveIcon } from './Archive'
export { ArrowDownIcon } from './ArrowDown'
export { ArrowLeftIcon } from './ArrowLeft'
export { ArrowLineDownIcon } from './ArrowLineDown'
export { ArrowLineLeftIcon } from './ArrowLineLeft'
export { ArrowLineRightIcon } from './ArrowLineRight'
export { ArrowLineUpIcon } from './ArrowLineUp'
Expand Down
4 changes: 3 additions & 1 deletion packages/IconFont/src/unicode.json
Original file line number Diff line number Diff line change
Expand Up @@ -292,5 +292,7 @@
"masonry_2": "0xF223",
"connection": "0xF224",
"arrow_line_left": "0xF226",
"arrow_line_right": "0xF227"
"arrow_line_right": "0xF227",
"arrow_line_down": "0xF228",
"arrow_line_up": "0xF229"
}
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 @@ -11,6 +11,7 @@ export const arrows: IconProps['name'][] = [
'arrow_line_left',
'arrow_line_right',
'arrow_line_up',
'arrow_line_down',
]

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

0 comments on commit 3144150

Please sign in to comment.