// @flow import React from 'react'; import Icon from './Icon'; import type { Props } from './Icon'; export default function CheckboxIcon({ checked, ...rest }: Props & { checked: boolean }) { return ( {checked ? ( ) : ( )} ); }