* fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components * fix(ui): split icons from SVG.tsx components
19 lines
574 B
TypeScript
19 lines
574 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 Side_menu_closed(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="none" stroke="#999" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" width={ `${ width }px` } height={ `${ height }px` } ><path d="M4 12h16M4 6h16M4 18h16"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Side_menu_closed;
|