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