export const NotificationIcon = `export const NotificationIcon = ({size, height, width, ...props}) => { return ( ); };`; export const CheckIcon = `export const CheckIcon = ({ size, height, width, ...props }) => { return ( ); };`; const App = `import {Chip} from "@nextui-org/react"; import {NotificationIcon} from "./NotificationIcon"; import {CheckIcon} from "./CheckIcon"; export default function App() { return (
} variant="faded" color="success" > Chip } variant="flat" color="secondary" > Chip
); }`; const react = { "/App.jsx": App, "/NotificationIcon.jsx": NotificationIcon, "/CheckIcon.jsx": CheckIcon, }; export default { ...react, };