A design system in a box.
hip-ui.tngl.io/docs/introduction
1import { Alert } from "@/components/alert";
2import { Flex } from "@/components/flex";
3
4export function Variants() {
5 return (
6 <Flex gap="2xl" direction="column">
7 <Alert variant="info" title="Information">
8 This is an informational alert.
9 </Alert>
10 <Alert variant="success" title="Success">
11 Your changes have been saved successfully.
12 </Alert>
13 <Alert variant="warning" title="Warning">
14 Please review your input before submitting.
15 </Alert>
16 <Alert variant="critical" title="Error">
17 Something went wrong. Please try again.
18 </Alert>
19 </Flex>
20 );
21}