Alert
A component that displays a brief, important message to the user.
A component that displays a brief, important message to the user.
import { Alert } from '@tacos-ui/react';
import { InfoIcon } from 'lucide-react';
export const Demo = (props: Alert.RootProps) => {
return (
<Alert.Root {...props}>
<Alert.Icon asChild>
<InfoIcon />
</Alert.Icon>
<Alert.Content>
<Alert.Title>Browser Update available</Alert.Title>
<Alert.Description>For the best experience, please update your browser.</Alert.Description>
</Alert.Content>
</Alert.Root>
);
};
<Alert.Root>
<Alert.Icon asChild>
<InfoIcon />
</Alert.Icon>
<Alert.Title>Browser Update available</Alert.Title>
</Alert.Root>