Skip to content

Commit

Permalink
✨ 아이콘 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Wish-baek committed Apr 15, 2024
1 parent 3fb103e commit 4f7a11b
Show file tree
Hide file tree
Showing 8 changed files with 111 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.80

### Patch Changes

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

## 0.1.79

### 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.79",
"version": "0.1.80",
"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.9.5

### Patch Changes

- 아이콘 추가

## 1.9.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.9.4",
"version": "1.9.5",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
36 changes: 36 additions & 0 deletions packages/parte-icons/src/Icons/DownloadIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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"
>
<path
d="M2 8.00277V14H14V8"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M11 7.66666L8 10.6667L5 7.66666"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M7.99707 2V10.6667"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const DownloadIcon = convertIcon(Icon, "download");
export default DownloadIcon;
21 changes: 21 additions & 0 deletions packages/parte-icons/src/Icons/ProjectIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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"
>
<path
d="M1.66699 2.66667C1.66699 2.29848 1.96547 2 2.33366 2H6.33366L8.00033 4H13.667C14.0352 4 14.3337 4.29847 14.3337 4.66667V13.3333C14.3337 13.7015 14.0352 14 13.667 14H2.33366C1.96547 14 1.66699 13.7015 1.66699 13.3333V2.66667Z"
stroke="currentcolor"
stroke-width="1.5"
stroke-linejoin="round"
/>
</svg>
);
}
const ProjectIcon = convertIcon(Icon, "project");
export default ProjectIcon;
36 changes: 36 additions & 0 deletions packages/parte-icons/src/Icons/ToTopIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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"
>
<path
d="M8.00293 4.7002V14"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 8.66666L8 4.66666L12 8.66666"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 2H12"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const ToTopIcon = convertIcon(Icon, "to-top");
export default ToTopIcon;
3 changes: 3 additions & 0 deletions packages/parte-icons/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -614,3 +614,6 @@ export { default as ConnectionPointIcon } from "./Icons/ConnectionPointIcon";
export { default as PhoneTelephoneIcon } from "./Icons/PhoneTelephoneIcon";
export { default as IdCardHIcon } from "./Icons/IdCardHIcon";
export { default as MailIcon } from "./Icons/MailIcon";
export { default as ProjectIcon } from "./Icons/ProjectIcon";
export { default as DownloadIcon } from "./Icons/DownloadIcon";
export { default as ToTopIcon } from "./Icons/ToTopIcon";

0 comments on commit 4f7a11b

Please sign in to comment.