const Check = ({ ...props }) => { return ( <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" {...props} > <path d="M20 6L9 17L4 12" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /> </svg> ) } export default Check