Geral

SubHeading

Componente de SubHeading

O SubHeading permite a criação de subtítulos em diferentes níveis, com a possibilidade de incluir elementos filhos e personalização de classes.


Como importar

import { SubHeading } from '@/app/shared/@JustLaunch/components';

Exemplo de uso

Default

<SubHeading title='This is a SubHeading' level={2} />

Com Children

<SubHeading title='SubHeading with children' level={3}>
  <button className="rounded-md bg-blue-600 px-4 py-2 text-white hover:bg-blue-700">
    Action Button
  </button>
</SubHeading>

Com Classe Customizada

<SubHeading title='SubHeading with custom class' level={4} className='text-red-500 underline' />
Previous
Stat 🆕🎉