Files
shadcn-slint/ui/layouts/container.slint
2026-01-30 20:32:37 +08:00

12 lines
346 B
Plaintext

// Container component - Card-style container with border and rounded corners
import { Theme, SpacingSystem } from "../theme/theme.slint";
export component Container inherits Rectangle {
@children
background: Theme.colors.card;
border-radius: SpacingSystem.radius.md;
border-width: 1px;
border-color: Theme.colors.border;
}