mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import React from 'react'
|
|
import { Icon, IconProps } from './Icon'
|
|
|
|
export const ColorPicker = (props: IconProps) => (
|
|
<Icon {...props}>
|
|
<path d="M176 80l-16-16 64-24-24 64-16-16-48 48" fill="none" />
|
|
<path d="M64 176l48-48 24 24-48 48-36 12z" fill="none" />
|
|
</Icon>
|
|
)
|