mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 04:51:30 +01:00
15 lines
322 B
TypeScript
15 lines
322 B
TypeScript
export const Icon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => {
|
|
const { children, ...rest } = props
|
|
|
|
return (
|
|
<svg
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
viewBox='0 0 24 24'
|
|
className='dark:text-white text-black w-8 h-8 fill-current'
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</svg>
|
|
)
|
|
}
|