26 lines
526 B
JavaScript
26 lines
526 B
JavaScript
import { jsx as p } from "react/jsx-runtime";
|
|
import { Box as a } from "./react-you-ui25.mjs";
|
|
const c = (e) => {
|
|
const { className: t, id: r, children: n, style: s, ...o } = e;
|
|
return /* @__PURE__ */ p(
|
|
a,
|
|
{
|
|
className: t,
|
|
id: r,
|
|
style: {
|
|
display: "flex",
|
|
alignItems: "center",
|
|
justifyContent: "space-between",
|
|
padding: "8px 16px",
|
|
backgroundColor: "transparent",
|
|
...s
|
|
},
|
|
...o,
|
|
children: n
|
|
}
|
|
);
|
|
};
|
|
export {
|
|
c as AppBar
|
|
};
|