lint everything

This commit is contained in:
2023-11-18 16:34:09 +01:00
parent 68e5977fb2
commit 1af65eb479
78 changed files with 2282 additions and 2258 deletions

View File

@@ -1,21 +1,21 @@
import { Ref, SVGProps, forwardRef, memo } from 'react'
const SvgComponent = (props: SVGProps<SVGSVGElement>, ref: Ref<SVGSVGElement>) => (
<svg
fill={'none'}
height={18}
ref={ref}
viewBox={'0 0 18 18'}
width={18}
xmlns={'http://www.w3.org/2000/svg'}
{...props}
>
<path
d={
'M16 0H2a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V2a2 2 0 00-2-2zM7 14L2 9l1.41-1.41L7 11.17l7.59-7.59L16 5l-9 9z'
}
fill={'currentColor'}
/>
</svg>
<svg
fill={'none'}
height={18}
ref={ref}
viewBox={'0 0 18 18'}
width={18}
xmlns={'http://www.w3.org/2000/svg'}
{...props}
>
<path
d={
'M16 0H2a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V2a2 2 0 00-2-2zM7 14L2 9l1.41-1.41L7 11.17l7.59-7.59L16 5l-9 9z'
}
fill={'currentColor'}
/>
</svg>
)
const ForwardRef = forwardRef(SvgComponent)