* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
27 lines
987 B
TypeScript
27 lines
987 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 Toggles(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 18 19" width={`${width}px`} height={`${height}px`}>
|
|
<g>
|
|
<path d="M5.063 10.375a3.937 3.937 0 1 0 0 7.875h7.875a3.937 3.937 0 1 0 0-7.875H5.061Zm7.875 6.75a2.812 2.812 0 1 1 0-5.624 2.812 2.812 0 0 1 0 5.624ZM5.061 1.375a2.813 2.813 0 1 0 0 5.625 2.813 2.813 0 0 0 0-5.625Zm2.757 0A3.926 3.926 0 0 1 9 4.188 3.926 3.926 0 0 1 7.819 7h5.119a2.812 2.812 0 1 0 0-5.625h-5.12ZM5.063.25h7.875a3.937 3.937 0 1 1 0 7.875H5.061a3.937 3.937 0 1 1 0-7.875Z" />
|
|
</g>
|
|
<defs>
|
|
<clipPath id="a">
|
|
<path fill="#fff" transform="translate(0 .25)" d="M0 0h18v18H0z" />
|
|
</clipPath>
|
|
</defs>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Toggles;
|