openreplay/frontend/app/components/ui/Icons/file_bar_graph.tsx
Delirium 6c058b36d2
fix(ui): split icons from SVG.tsx components (#1787)
* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components

* fix(ui): split icons from SVG.tsx components
2023-12-19 17:35:47 +01:00

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 File_bar_graph(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg viewBox="0 0 14 15" width={ `${ width }px` } height={ `${ height }px` } ><g><path d="M3.938 10.612a.438.438 0 0 1-.438-.438v-1.75a.437.437 0 0 1 .438-.437h.874a.438.438 0 0 1 .438.437v1.75a.438.438 0 0 1-.438.438h-.875Zm2.624 0a.438.438 0 0 1-.437-.438v-3.5a.437.437 0 0 1 .438-.437h.875a.438.438 0 0 1 .437.437v3.5a.438.438 0 0 1-.438.438h-.875Zm2.625 0a.438.438 0 0 1-.437-.438v-5.25a.437.437 0 0 1 .438-.437h.874a.438.438 0 0 1 .438.437v5.25a.438.438 0 0 1-.438.438h-.874Z"/><path d="M3.5.112a1.75 1.75 0 0 0-1.75 1.75v10.5a1.75 1.75 0 0 0 1.75 1.75h7a1.75 1.75 0 0 0 1.75-1.75v-10.5A1.75 1.75 0 0 0 10.5.112h-7Zm0 .875h7a.875.875 0 0 1 .875.875v10.5a.875.875 0 0 1-.875.875h-7a.875.875 0 0 1-.875-.875v-10.5A.875.875 0 0 1 3.5.987Z"/></g><defs><clipPath id="a"><path fill="#fff" transform="translate(0 .112)" d="M0 0h14v14H0z"/></clipPath></defs></svg>
);
}
export default File_bar_graph;