* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
32 lines
763 B
TypeScript
32 lines
763 B
TypeScript
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Sparkles(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg
|
|
viewBox="0 0 15 14"
|
|
fill="none"
|
|
width={`${width}px`}
|
|
height={`${height}px`}
|
|
>
|
|
<path
|
|
d="m9.653 3.106 1.485 3.515 3.515 1.485-3.515 1.485-1.485 3.515L8.168 9.59 4.653 8.106 8.168 6.62l1.485-3.515Z"
|
|
fill="#3EAAAF"
|
|
/>
|
|
<path
|
|
d="m3.313.894.89 2.11 2.11.89-2.11.891-.89 2.11-.891-2.11-2.109-.89 2.109-.892.891-2.109Z"
|
|
fill="#394EFF"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Sparkles;
|