mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-18 21:54:09 +00:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import { PropsWithChildren } from 'react';
|
|
|
|
import style from './GhostedText.module.scss';
|
|
|
|
export default function GhostedText({ children }: PropsWithChildren) {
|
|
return <div className={style.ghostedText}>{children}</div>;
|
|
}
|