p-stream/src/components/text/SecondaryLabel.tsx
2024-02-26 10:54:56 -05:00

3 lines
134 B
TypeScript

export function SecondaryLabel(props: { children: React.ReactNode }) {
return <p className="text-type-text">{props.children}</p>;
}