Font Size
Use fontSize prop to control the font-size of an element.
Name | Styles |
|---|---|
xs | |
sm | |
md | |
lg | |
xl | |
2xl | |
3xl | |
inherit |
#
Documentation
#
#
Usage
#
sm
The quick brown fox jumps over the lazy dog.
md
The quick brown fox jumps over the lazy dog.
lg
The quick brown fox jumps over the lazy dog.
xl
The quick brown fox jumps over the lazy dog.
2xl
The quick brown fox jumps over the lazy dog.
import type { ComponentPropsWithoutRef } from "react";
import { Group, Text } from "@optiaxiom/react";
export function App() {
return (
<Group flexDirection="column" gap="16">
<DemoItem fontSize="sm">
The quick brown fox jumps over the lazy dog.
</DemoItem>
<DemoItem fontSize="md">
The quick brown fox jumps over the lazy dog.
</DemoItem>
<DemoItem fontSize="lg">
The quick brown fox jumps over the lazy dog.
</DemoItem>
<DemoItem fontSize="xl">
The quick brown fox jumps over the lazy dog.
</DemoItem>
<DemoItem fontSize="2xl">
The quick brown fox jumps over the lazy dog.
</DemoItem>
</Group>
);
}
function DemoItem({
children,
...props
}: ComponentPropsWithoutRef<typeof Text>) {
return (
<div>
<Text color="fg.tertiary" fontFamily="mono" fontWeight="600">
{props.fontSize}
</Text>
<Text {...props}>{children}</Text>
</div>
);
}Last updated on