import { mergeProps } from 'solid-js' interface IconProps { width?: number | string height?: number | string fill?: string stroke?: string onMouseOver?: (e: MouseEvent) => void onMouseEnter?: (e: MouseEvent) => void onMouseOut?: (e: MouseEvent) => void } export function CheckIcon(_props: IconProps) { const props = mergeProps( { width: 24, height: 24, fill: 'white', stroke: 'white', }, _props, ) return ( ) } export function UnfoldMoreHorizontalIcon(_props: IconProps) { const props = mergeProps( { width: 24, height: 24, }, _props, ) return ( ) }