import React from 'react' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type ColorIconProps = Icon & Readonly<{ borderColor?: string }> export const ColorIcon = (props: ColorIconProps) => ( ) ColorIcon.defaultProps = BaseIconDefaultProps