mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-28 07:44:56 +00:00
12 lines
334 B
TypeScript
12 lines
334 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const Expand = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<polyline points="168 48 208 48 208 88" />
|
|
<polyline points="88 208 48 208 48 168" />
|
|
<polyline points="208 168 208 208 168 208" />
|
|
<polyline points="48 88 48 48 88 48" />
|
|
</Icon>
|
|
)
|