Files
metabuilder/icons/react/fakemui/Sort.tsx
2026-03-09 22:30:41 +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>
)