1
0
Fork 0

chore: Ported Albert

This commit is contained in:
joostdecock 2024-10-06 12:03:08 +02:00
parent a4b184325a
commit 40137c8f00
10 changed files with 53 additions and 58 deletions

View file

@ -13,6 +13,7 @@ export const LineDrawingWrapper = ({
viewBox = '0 0 100 100', // SVG viewBox
stroke = 1, // Stroke to use
children = [], // The actual linedrawing
style = { maxHeight: 'inherit' },
}) => (
<svg
xmlns="http://www.w3.org/2000/svg"
@ -23,6 +24,7 @@ export const LineDrawingWrapper = ({
strokeLinecap="round"
strokeLinejoin="round"
className={className + ' linedrawing'}
style={style}
>
{children}
</svg>