mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-18 07:22:36 +00:00
3 lines
134 B
TypeScript
3 lines
134 B
TypeScript
export function SecondaryLabel(props: { children: React.ReactNode }) {
|
|
return <p className="text-type-text">{props.children}</p>;
|
|
}
|