Display text using well-defined typographic styles.
import { Text } from "@/components/ui/text-1"; export default function AlignDemo() { return ( <div className="flex flex-col gap-2 w-3/4"> <div> <Text align="center">The Evil Rabbit jumps.</Text> <Text align="left">The Evil Rabbit jumps.</Text> <Text align="right">The Evil Rabbit jumps.</Text> </div> </div> ); }
Part of Geist — browse the full library on 21st.dev.