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

14 lines
431 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const ListDashes = (props: IconProps) => (
<Icon {...props}>
<line x1="96" y1="64" x2="216" y2="64" />
<line x1="96" y1="128" x2="216" y2="128" />
<line x1="96" y1="192" x2="216" y2="192" />
<line x1="40" y1="64" x2="56" y2="64" />
<line x1="40" y1="128" x2="56" y2="128" />
<line x1="40" y1="192" x2="56" y2="192" />
</Icon>
)