Files
metabuilder/icons/react/fakemui/Layers.tsx
2026-03-09 22:30:41 +00:00

11 lines
315 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Layers = (props: IconProps) => (
<Icon {...props}>
<polygon points="32 96 128 32 224 96 128 160 32 96" fill="none" />
<polyline points="32 128 128 192 224 128" />
<polyline points="32 160 128 224 224 160" />
</Icon>
)