23 lines
637 B
TypeScript
23 lines
637 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_open(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`}>
|
|
<rect width="18" height="18" x="3" y="3" rx="2" ry="2" />
|
|
<path d="M9 3v18M16 15l-3-3 3-3" />
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default Side_menu_open;
|