import {Checkbox} from "@nextui-org/react"; export const HeartIcon = ({size, height, width, ...props}) => { // avoid passing non-DOM attributes to svg // eslint-disable-next-line @typescript-eslint/no-unused-vars const {isSelected, isIndeterminate, disableAnimation, ...otherProps} = props; return ( ); }; export const PlusIcon = ({size, height, width, ...props}) => { // avoid passing non-DOM attributes to svg // eslint-disable-next-line @typescript-eslint/no-unused-vars const {isSelected, isIndeterminate, disableAnimation, ...otherProps} = props; return ( ); }; export default function App() { return (
}> Option }> Option
); }