Window mockup
Use WindowMockup to show an empty desktop app window shell with rounded corners and a strong drop shadow.
import { WindowMockup, Panel } from "density-base-ui";
export default function WindowMockupExample() {
return (
<Panel>
<div style={{ maxWidth: "34rem", width: "100%" }}>
<WindowMockup style={{ aspectRatio: "16 / 10" }} />
</div>
</Panel>
);
}