Files
metabuilder/fakemui/icons/Analytics.tsx
2025-12-30 14:11:52 +00:00

10 lines
285 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Analytics = (props: IconProps) => (
<Icon {...props}>
<polyline points="40 176 72 128 104 152 136 96 168 120 200 64 224 40" />
<rect x="32" y="32" width="192" height="192" rx="8" />
</Icon>
)