Skip to content

Commit

Permalink
Merge pull request #33 from fangherk/svg_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nandorojo authored Dec 28, 2023
2 parents 75065ab + ab8fa54 commit 57840b1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions example/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@ const WebIcon = () => {
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
>
<path d='m14 12-8.5 8.5a2.12 2.12 0 1 1-3-3L11 9'></path>
<path d='M15 13 9 7l4-4 6 6h3a8 8 0 0 1-7 7z'></path>
Expand Down
14 changes: 7 additions & 7 deletions src/BurntModule.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ const DoneIcon = () => (
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
className='lucide lucide-check'
data-burnt-icon='check'
>
Expand All @@ -82,7 +82,7 @@ const DoneIcon = () => (
stroke-dashoffset: -50;
animation: burnt-draw-checkmark 400ms linear forwards;
}
@keyframes burnt-draw-checkmark {
100% {
stroke-dashoffset: 0;
Expand All @@ -103,9 +103,9 @@ const XIcon = () => {
viewBox='0 0 24 24'
fill='none'
stroke='currentColor'
stroke-width='2'
stroke-linecap='round'
stroke-linejoin='round'
strokeWidth='2'
strokeLinecap='round'
strokeLinejoin='round'
className='lucide lucide-x'
data-burnt-icon='x'
>
Expand Down

0 comments on commit 57840b1

Please sign in to comment.