movie-web/src/components/text/SecondaryLabel.tsx

4 lines
134 B
TypeScript

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