import {Layout, Box, AcmeLogo, Content} from "./common";
const SearchIcon = `export const SearchIcon = ({size, fill, width = 24, height = 24, ...props}) => {
return (
);
};`;
const App = `import { Navbar, Text, Avatar, Dropdown, Input } from "@nextui-org/react";
import { Layout } from "./Layout.js";
import { AcmeLogo } from "./AcmeLogo.js";
import { SearchIcon } from "./SearchIcon.js";
export default function App() {
return (
ACME
Dashboard
Team
Activity
Settings
}
contentLeftStyling={false}
css={{
w: "100%",
"@xsMax": {
mw: "300px",
},
"& .nextui-input-content--left": {
h: "100%",
ml: "$4",
dflex: "center",
},
}}
placeholder="Search..."
/>
console.log({ actionKey })}
>
Signed in as
zoey@example.com
My Settings
Team Settings
Analytics
System
Configurations
Help & Feedback
Log Out
);
}`;
const react = {
"/Content.js": Content,
"/Layout.js": Layout,
"/AcmeLogo.js": AcmeLogo,
"/SearchIcon.js": SearchIcon,
"/Box.js": Box,
"/App.js": App,
};
export default {
...react,
};