v2.0.0

Draft response

AppFrame wraps content with lightweight app chrome for previews, dashboards, and shell-like layouts.

Styled quick start

Copy this entrypoint first. It includes the imports required to get the component on screen.

svelte
<script lang="ts">
  import '@dryui/ui/themes/default.css';
  import '@dryui/ui/themes/dark.css';
  import { AppFrame } from '@dryui/ui';
</script>

<AppFrame>Content</AppFrame>

Import options

Root package

ts
import { AppFrame } from '@dryui/ui'

Per-component subpath

ts
import { AppFrame } from '@dryui/ui/app-frame'

API

Props, CSS variables, and the public data attributes you can target when styling.

Prop Type Description Default Required Bindable
title
string
Primary heading or label text.
actions
Snippet
children
Snippet
Content rendered inside the component.