import React from 'react'; export const CheckedIcon = ({ width = 20, height = 20, isChecked = false, color = '#0A0A0B', }) => ( {isChecked ? ( ) : ( )} );