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 May 2, 2024
1 parent 9c728a8 commit 1887402
Show file tree
Hide file tree
Showing 6 changed files with 60 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.87

### Patch Changes

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

## 0.1.86

### 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.86",
"version": "0.1.87",
"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.2

### Patch Changes

- 아이콘 추가

## 1.10.1

### 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.1",
"version": "1.10.2",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
44 changes: 44 additions & 0 deletions packages/parte-icons/src/Icons/WrongUserIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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="M7.99967 6.66667C9.47243 6.66667 10.6663 5.47276 10.6663 4C10.6663 2.52724 9.47243 1.33334 7.99967 1.33334C6.52692 1.33334 5.33301 2.52724 5.33301 4C5.33301 5.47276 6.52692 6.66667 7.99967 6.66667Z"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M14 14.6667C14 11.353 11.3137 8.66666 8 8.66666C4.6863 8.66666 2 11.353 2 14.6667"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6.66699 12L9.33366 14.6667"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M9.33366 12L6.66699 14.6667"
stroke="currentcolor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}
const WrongUserIcon = convertIcon(Icon, "wrong-user");
export default WrongUserIcon;
1 change: 1 addition & 0 deletions packages/parte-icons/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -624,3 +624,4 @@ export { default as ExcelIcon } from "./Icons/ExcelIcon";
export { default as FillePdfOneIcon } from "./Icons/FillePdfOneIcon";
export { default as CrownIcon } from "./Icons/CrownIcon";
export { default as UserPlusIcon } from "./Icons/UserPlusIcon";
export { default as WrongUserIcon } from "./Icons/WrongUserIcon";

0 comments on commit 1887402

Please sign in to comment.