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 {Badge, Avatar} from "@nextui-org/react"; import {NotificationIcon} from "./NotificationIcon"; import {CheckIcon} from "./CheckIcon"; export default function App() { return (
} color="success" placement="bottom-right" > } color="danger" shape="circle" placement="top-right" >
); }`; const react = { "/App.jsx": App, "/NotificationIcon.jsx": NotificationIcon, "/CheckIcon.jsx": CheckIcon, }; export default { ...react, };