* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
20 lines
531 B
TypeScript
20 lines
531 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 Minus(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 448 512" width={`${width}px`} height={`${height}px`}>
|
|
<path d="M436 274c6.6 0 12-5.4 12-12v-12c0-6.6-5.4-12-12-12H12c-6.6 0-12 5.4-12 12v12c0 6.6 5.4 12 12 12h424z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Minus;
|