Uiscore Alert

Feedback component with semantic states and extended/default layouts.

Install command

npx @uiscore/cli add alert

Registry JSON

/registry/alert.json

Usage

import { Alert } from "./shared/ui/components/alert";

export function Example() {
  return (
    <Alert
      design="extended"
      appearance="colored"
      state="success"
      title="Subscription active"
      description="Billing and access are already wired."
      showActions={false}
    />
  );
}

Agent guidance