-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
75 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# @parte-ds/icons | ||
|
||
## 1.10.5 | ||
|
||
### Patch Changes | ||
|
||
- 아이콘 추가 | ||
|
||
## 1.10.4 | ||
|
||
### Patch Changes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
import { convertIcon, IconProps } from "../common/Icon"; | ||
|
||
function Icon({ size, ...rest }: Pick<IconProps, "style" | "color" | "size">) { | ||
return ( | ||
<svg | ||
width={size} | ||
height={size} | ||
viewBox="0 0 16 16" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
{...rest} | ||
> | ||
<path | ||
d="M12.3333 2.66666H3.66667C3.29848 2.66666 3 2.96513 3 3.33332V14C3 14.3682 3.29848 14.6667 3.66667 14.6667H12.3333C12.7015 14.6667 13 14.3682 13 14V3.33332C13 2.96513 12.7015 2.66666 12.3333 2.66666Z" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M6 1.33334V3.33334" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M10 1.33334V3.33334" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M5.33301 6.33334H10.6663" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M5.33301 9H9.33301" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
<path | ||
d="M5.33301 11.6667H7.99967" | ||
stroke="currentcolor" | ||
strokeWidth="1.5" | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
/> | ||
</svg> | ||
); | ||
} | ||
|
||
const TransactionOrderIcon = convertIcon(Icon, "transaction-order"); | ||
|
||
export default TransactionOrderIcon; |