Skip to content

Commit

Permalink
Merge pull request #314 from liam-hq/fix-cardinality-icon-attributes-…
Browse files Browse the repository at this point in the history
…to-use-camel-case

⚒️ Fix SVG attributes to use camelCase for consistency
  • Loading branch information
junkisai authored Dec 19, 2024
2 parents f0f3780 + 0870088 commit 35187f5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions frontend/.changeset/chatty-buses-do.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@liam-hq/ui": patch
"@liam-hq/cli": patch
---

⚒️ Fix SVG attributes to use camelCase for consistency
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ export const CardinalityZeroOrOneLeftIcon: FC<Props> = (props) => {
fill="transparent"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M6.665 3.83008C4.36473 3.83008 2.5 5.69481 2.5 7.99508C2.5 10.2953 4.36473 12.1601 6.665 12.1601C8.96527 12.1601 10.83 10.2953 10.83 7.99508C10.83 5.69481 8.96527 3.83008 6.665 3.83008ZM1.5 7.99508C1.5 5.14253 3.81245 2.83008 6.665 2.83008C9.51755 2.83008 11.83 5.14253 11.83 7.99508C11.83 10.8476 9.51755 13.1601 6.665 13.1601C3.81245 13.1601 1.5 10.8476 1.5 7.99508Z"
fill="currentColor"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M16 2.83008C16.2761 2.83008 16.5 3.05394 16.5 3.33008V12.6634C16.5 12.9396 16.2761 13.1634 16 13.1634C15.7239 13.1634 15.5 12.9396 15.5 12.6634V3.33008C15.5 3.05394 15.7239 2.83008 16 2.83008Z"
fill="currentColor"
/>
Expand Down
10 changes: 5 additions & 5 deletions frontend/packages/ui/src/icons/CardinalityZeroOrOneRightIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,20 @@ export const CardinalityZeroOrOneRightIcon: FC<Props> = (props) => {
fill="none"
{...props}
>
<g clip-path="url(#clip0_2922_88127)">
<g clipPath="url(#clip0_2922_88127)">
<path
d="M15.835 12.6601C18.4114 12.6601 20.5 10.5715 20.5 7.99508C20.5 5.41867 18.4114 3.33008 15.835 3.33008C13.2586 3.33008 11.17 5.41867 11.17 7.99508C11.17 10.5715 13.2586 12.6601 15.835 12.6601Z"
fill="transparent"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M15.835 3.83008C13.5347 3.83008 11.67 5.69481 11.67 7.99508C11.67 10.2953 13.5347 12.1601 15.835 12.1601C18.1353 12.1601 20 10.2953 20 7.99508C20 5.69481 18.1353 3.83008 15.835 3.83008ZM10.67 7.99508C10.67 5.14253 12.9824 2.83008 15.835 2.83008C18.6876 2.83008 21 5.14253 21 7.99508C21 10.8476 18.6876 13.1601 15.835 13.1601C12.9824 13.1601 10.67 10.8476 10.67 7.99508Z"
fill="currentColor"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M6.5 2.83008C6.77614 2.83008 7 3.05394 7 3.33008V12.6634C7 12.9396 6.77614 13.1634 6.5 13.1634C6.22386 13.1634 6 12.9396 6 12.6634V3.33008C6 3.05394 6.22386 2.83008 6.5 2.83008Z"
fill="currentColor"
/>
Expand Down

0 comments on commit 35187f5

Please sign in to comment.