title.tsx 189 B

1234567891011121314
  1. const Title = ({
  2. title,
  3. }: {
  4. title: string
  5. }) => {
  6. return (
  7. <div className='truncate text-text-secondary system-md-semibold'>
  8. {title}
  9. </div>
  10. )
  11. }
  12. export default Title