openreplay/frontend/app/components/ui/Icons/file_bar_graph.tsx
Andrey Babushkin fd5c0c9747
Add lokalisation (#3092)
* applied eslint

* add locales and lint the project

* removed error boundary

* updated locales

* fix min files

* fix locales
2025-03-06 17:43:15 +01:00

28 lines
1.3 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;