Alert 16

PreviousNext

Minimal alert without icon displaying simple message text only.

Docs
shadcn-studiocomponent

Preview

Loading preview…
registry/new-york/components/alert/alert-16.tsx
import { Alert, AlertTitle } from '@/registry/new-york/ui/alert'

const AlertWithoutIconDemo = () => {
  return (
    <Alert>
      <AlertTitle>New message!</AlertTitle>
    </Alert>
  )
}

export default AlertWithoutIconDemo

Installation

npx shadcn@latest add @shadcn-studio/alert-16

Usage

import { Alert16 } from "@/components/alert-16"
<Alert16 />