mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-05-02 17:55:07 +00:00
11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ZoomOut = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<circle cx="112" cy="112" r="80" />
|
|
<line x1="168" y1="168" x2="224" y2="224" />
|
|
<line x1="80" y1="112" x2="144" y2="112" />
|
|
</Icon>
|
|
)
|