* 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
726 B
TypeScript
19 lines
726 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 Os_windows(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 523 533" width={ `${ width }px` } height={ `${ height }px` } ><path d="M28 257h192V71L28 98.169V257ZM0 285V73.852l248-35.093V285H0Zm28 149.818L220 462V278H28v156.818ZM0 459.133V250h248v244.243L0 459.133Zm240 5.263L495 500V278H240v186.396Zm-28 24.362V250h311v282.181l-311-43.423ZM240 68.43V256h255V33L240 68.43ZM212 44.05 523 .841V284H212V44.051Z"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Os_windows;
|