mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
11 lines
286 B
TypeScript
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>
|
|
)
|