* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
20 lines
525 B
TypeScript
20 lines
525 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 Enter(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 484.5 484.5" width={`${width}px`} height={`${height}px`}>
|
|
<path d="M433.5 114.75v102H96.9l91.8-91.8-35.7-35.7-153 153 153 153 35.7-35.7-91.8-91.8h387.6v-153z" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Enter;
|