21 lines
595 B
TypeScript
21 lines
595 B
TypeScript
const LineChartIcon = ({ className }: { className: string }) => {
|
|
return (
|
|
<svg
|
|
className={`${className}`}
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="32"
|
|
height="32"
|
|
viewBox="0 0 32 32"
|
|
fill="currentColor"
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
clipRule="evenodd"
|
|
d="M2.766 24.073a1.5 1.5 0 0 1 .098-2.12l9.875-8.999a1.5 1.5 0 0 1 1.99-.028l3.493 3.008 8.892-8.105a1.5 1.5 0 1 1 2.021 2.217l-9.875 9a1.5 1.5 0 0 1-1.989.028l-3.493-3.007-8.893 8.104a1.5 1.5 0 0 1-2.119-.098Z"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default LineChartIcon
|