Skip to content

Commit

Permalink
✨ 아이콘 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Wish-baek authored and SOWON BAEK committed Jun 19, 2024
1 parent 8b0cf60 commit 2b4c0e7
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 2 deletions.
7 changes: 7 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @parte-ds/web

## 0.1.102

### Patch Changes

- Updated dependencies
- @parte-ds/icons@1.10.5

## 0.1.101

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parte-ds/web",
"version": "0.1.101",
"version": "0.1.102",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
6 changes: 6 additions & 0 deletions packages/parte-icons/CHANGELOG.md
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
Expand Down
2 changes: 1 addition & 1 deletion packages/parte-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parte-ds/icons",
"version": "1.10.4",
"version": "1.10.5",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
60 changes: 60 additions & 0 deletions packages/parte-icons/src/Icons/TransactionOrderIcon.tsx
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;

0 comments on commit 2b4c0e7

Please sign in to comment.