18 lines
838 B
TypeScript
18 lines
838 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 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;
|