* 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
1.2 KiB
TypeScript
19 lines
1.2 KiB
TypeScript
|
|
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Low_disc_space(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 12 12" width={ `${ width }px` } height={ `${ height }px` } ><g><path d="M10.714 6.08H5.92V1.286a.107.107 0 0 0-.107-.107h-.348a5.337 5.337 0 0 0-3.787 1.568 5.333 5.333 0 0 0-1.57 3.789 5.336 5.336 0 0 0 1.568 3.787 5.333 5.333 0 0 0 3.79 1.57 5.335 5.335 0 0 0 3.787-1.569 5.333 5.333 0 0 0 1.57-3.788v-.349a.107.107 0 0 0-.108-.107Zm-2.12 3.614a4.441 4.441 0 0 1-3.151 1.288A4.418 4.418 0 0 1 2.319 9.68a4.418 4.418 0 0 1-1.301-3.144c0-1.188.462-2.305 1.301-3.145a4.408 4.408 0 0 1 2.69-1.279v4.879h4.879a4.41 4.41 0 0 1-1.294 2.703Zm3.299-4.358-.035-.378a5.328 5.328 0 0 0-1.543-3.276A5.35 5.35 0 0 0 7.031.142L6.652.107a.106.106 0 0 0-.116.106v5.144c0 .059.048.107.107.107l5.143-.013a.107.107 0 0 0 .107-.115Zm-4.45-.78V1.12a4.45 4.45 0 0 1 2.23 1.202 4.421 4.421 0 0 1 1.204 2.225l-3.433.01Z"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h12v12H0z"/></clipPath></defs></svg>
|
|
);
|
|
}
|
|
|
|
export default Low_disc_space;
|