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

11 lines
286 B
TypeScript

import React from 'react'
import { Icon, IconProps } from './Icon'
export const Sort = (props: IconProps) => (
<Icon {...props}>
<line x1="48" y1="72" x2="208" y2="72" />
<line x1="48" y1="128" x2="176" y2="128" />
<line x1="48" y1="184" x2="144" y2="184" />
</Icon>
)