import React from 'react' import { color } from '../_utils/branding' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type PinIconProps = Icon & Readonly<{ bgColor?: string strokeColor?: string }> export const PinIcon = ({ bgColor, strokeColor, isDisabled, ...props }: PinIconProps) => ( ) PinIcon.defaultProps = { ...BaseIconDefaultProps, bgColor: 'none', strokeColor: color.lightMidnightGreen, }