Skip to content

Commit

Permalink
Merge pull request #79 from sopt-makers/feat/storybook
Browse files Browse the repository at this point in the history
[ICONS] fix: name, stroke
  • Loading branch information
sohee-K authored Apr 17, 2024
2 parents a086a9e + df3ab34 commit 9b4f439
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changeset/four-poets-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@sopt-makers/icons": patch
---

fix name, fix stroke
4 changes: 2 additions & 2 deletions packages/icons/src/Editor/ic-letter-spacing.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconArchiveProps extends HTMLAttributes<SVGSVGElement> {}
interface IconArchiveProps extends HTMLAttributes<SVGSVGElement> { }

const IconLetterSpacing = forwardRef<SVGSVGElement, IconArchiveProps>(
(props, ref) => {
Expand All @@ -14,7 +14,7 @@ const IconLetterSpacing = forwardRef<SVGSVGElement, IconArchiveProps>(
>
<path
d="M9 13L15 13M7 17L11.2717 7.60225C11.5031 7.09323 11.6188 6.83872 11.7791 6.75976C11.9184 6.69115 12.0816 6.69115 12.2209 6.75976C12.3812 6.83872 12.4969 7.09323 12.7283 7.60225L17 17M21 3V21M3 3L3 21"
stroke="white"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
Expand Down
6 changes: 3 additions & 3 deletions packages/icons/src/Feedback/ic-help-circle.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconHelpCricleProps extends HTMLAttributes<SVGSVGElement> {}
interface IconHelpCircleProps extends HTMLAttributes<SVGSVGElement> { }

const IconHelpCricle = forwardRef<SVGSVGElement, IconHelpCricleProps>(
const IconHelpCircle = forwardRef<SVGSVGElement, IconHelpCircleProps>(
(props, ref) => {
return (
<svg
Expand All @@ -24,4 +24,4 @@ const IconHelpCricle = forwardRef<SVGSVGElement, IconHelpCricleProps>(
}
);

export default IconHelpCricle;
export default IconHelpCircle;
6 changes: 3 additions & 3 deletions packages/icons/src/Feedback/ic-info-circle.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconInfoCricleProps extends HTMLAttributes<SVGSVGElement> {}
interface IconInfoCircleProps extends HTMLAttributes<SVGSVGElement> { }

const IconInfoCricle = forwardRef<SVGSVGElement, IconInfoCricleProps>(
const IconInfoCircle = forwardRef<SVGSVGElement, IconInfoCircleProps>(
(props, ref) => {
return (
<svg
Expand All @@ -24,4 +24,4 @@ const IconInfoCricle = forwardRef<SVGSVGElement, IconInfoCricleProps>(
}
);

export default IconInfoCricle;
export default IconInfoCircle;
4 changes: 2 additions & 2 deletions packages/icons/src/Feedback/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export { default as IconAlertTriangle } from "./ic-alert-triangle";
export { default as IconBellActive } from "./ic-bell-active";
export { default as IconBellOff } from "./ic-bell-off";
export { default as IconBell } from "./ic-bell";
export { default as IconHelpCricle } from "./ic-help-circle";
export { default as IconInfoCricle } from "./ic-info-circle";
export { default as IconHelpCircle } from "./ic-help-circle";
export { default as IconInfoCircle } from "./ic-info-circle";
export { default as IconThumbsDown } from "./ic-thumbs-down";
export { default as IconThumbsUp } from "./ic-thumbs-up";
4 changes: 2 additions & 2 deletions packages/icons/src/Users/ic-user.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { HTMLAttributes, forwardRef } from "react";

interface IconUserProps extends HTMLAttributes<SVGSVGElement> {}
interface IconUserProps extends HTMLAttributes<SVGSVGElement> { }

const IconUser = forwardRef<SVGSVGElement, IconUserProps>((props, ref) => {
return (
Expand All @@ -14,7 +14,7 @@ const IconUser = forwardRef<SVGSVGElement, IconUserProps>((props, ref) => {
<g filter="url(#filter0_d_1062_557)">
<path
d="M21 21C21 19.6044 21 18.9067 20.8278 18.3389C20.44 17.0605 19.4395 16.06 18.1611 15.6722C17.5933 15.5 16.8956 15.5 15.5 15.5H10.5C9.10444 15.5 8.40665 15.5 7.83886 15.6722C6.56045 16.06 5.56004 17.0605 5.17224 18.3389C5 18.9067 5 19.6044 5 21M17.5 7.5C17.5 9.98528 15.4853 12 13 12C10.5147 12 8.5 9.98528 8.5 7.5C8.5 5.01472 10.5147 3 13 3C15.4853 3 17.5 5.01472 17.5 7.5Z"
stroke="white"
stroke="currentColor"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
Expand Down

0 comments on commit 9b4f439

Please sign in to comment.