const UserIcon = `export const UserIcon = ({ fill = 'currentColor', filled, size, height, width, label, ...props }) => { return ( ); };`; const CameraIcon = `export const CameraIcon = ({ fill = 'currentColor', filled, size, height, width, label, ...props }) => { return ( ); };`; const App = `import {Button} from "@nextui-org/react"; import {UserIcon} from './UserIcon'; import {CameraIcon} from './CameraIcon'; export default function App() { return (
); }`; const react = { "/App.jsx": App, "/UserIcon.jsx": UserIcon, "/CameraIcon.jsx": CameraIcon, }; export default { ...react, };