mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-29 02:49:13 +00:00
14 lines
355 B
TypeScript
14 lines
355 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
|
|
import { cx } from '../../utils/styleUtils';
|
|
|
|
import style from './Eyebrow.module.scss';
|
|
|
|
interface EyebrowProps {
|
|
className?: string;
|
|
}
|
|
|
|
export default function Eyebrow({ children, className }: PropsWithChildren<EyebrowProps>) {
|
|
return <span className={cx([style.eyebrow, className])}>{children}</span>;
|
|
}
|