Skip to content

Commit

Permalink
fix(icons): use camelCase in props names
Browse files Browse the repository at this point in the history
  • Loading branch information
aliceoq committed Jan 3, 2024
1 parent 1b82f1f commit e3030fd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/components/icons/arrow-left-icon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ const ArrowLeftIcon = (props: IconProps) => (
<path
d="M19.5195 12.0195L4.52953 12.0195"
stroke="#4A596B"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M10.5176 18.0117L4.48058 11.9997L10.5176 5.98772"
stroke="#4A596B"
stroke-width="1.5"
stroke-linecap="round"
stroke-linejoin="round"
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Icon>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/overview-card/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ const Platform = (props: IconProps) => (
fill="none"
stroke="#f71963"
strokeLinejoin="miter"
stroke-miterlimit="10"
strokeMiterlimit="10"
>
<rect x="4" y="15" width="8" height="7"></rect>
<rect x="12" y="15" width="8" height="7"></rect>
Expand Down

0 comments on commit e3030fd

Please sign in to comment.