openreplay/frontend/app/components/ui/Icons/dashboards_cohort_chart.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

44 lines
1 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 Dashboards_cohort_chart(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg
viewBox="0 0 16 16"
fill="none"
width={`${width}px`}
height={`${height}px`}
>
<g>
<path fill="#fff" fillOpacity=".01" d="M0 0h16v16H0z" />
<path
d="M2.023 6.008h11.953V2.023H2.023v11.953h3.985V2.023"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M2.023 9.992h7.97V2.023"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
<defs>
<clipPath id="a">
<path fill="#fff" d="M0 0h16v16H0z" />
</clipPath>
</defs>
</svg>
);
}
export default Dashboards_cohort_chart;