Files
metabuilder/fakemui/icons/Reorder.tsx
2025-12-30 14:13:40 +00:00

11 lines
289 B
TypeScript

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