import React from 'react' import cc from 'classcat' import { color } from '../_utils/branding' import { BaseIcon, BaseIconDefaultProps, Icon } from '../_utils/icon' export type MeetingPointIconProps = Icon & Readonly<{ active?: boolean shadowed?: boolean }> export const MeetingPointIcon = ({ active, shadowed, ...props }: MeetingPointIconProps) => { const strokeColor = active ? color.white : color.blue const fillColor = active ? color.blue : color.white const className = cc([props.className, { 'kirk-icon-shadowed': shadowed }]) return ( ) } MeetingPointIcon.defaultProps = { ...BaseIconDefaultProps, active: false, shadowed: false, }