Home
Alert
Playground
Playground Snippet
<ui-alert title="A Short Title Is Best" description="A description should be a short, complete sentence." variant="stack" input mode="light" input-label="Value" input-placeholder="Value" primary-text="Primary" destructive-text="Destructive" secondary-text="Secondary">Alert</ui-alert>CLI
npx sajilo-ui add alertHTML Usage
<script type="module" src="/components/ui/alert/alert.js"></script>
<ui-alert>Alert</ui-alert>React Usage
import { Alert } from "/components/ui/alert/alert.react.js";
export default function Demo() {
return <Alert>Alert</Alert>;
}