A design system in a box. hip-ui.tngl.io/docs/introduction
at main 15 lines 324 B view raw
1import { PinIcon } from "lucide-react"; 2 3import { Flex } from "@/components/flex"; 4import { ToggleButton } from "@/components/toggle-button"; 5 6export function Basic() { 7 return ( 8 <Flex gap="md"> 9 <ToggleButton>Toggle</ToggleButton> 10 <ToggleButton> 11 <PinIcon /> 12 </ToggleButton> 13 </Flex> 14 ); 15}