mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
10 lines
285 B
TypeScript
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>
|
|
)
|