skolplattformen-backup/packages/site/components/Typography.tsx

16 lines
361 B
TypeScript
Raw Normal View History

export const H1: React.FC = ({ children }) => {
2021-03-30 18:34:40 +00:00
return (
2021-05-11 12:03:26 +00:00
<h1 className="mb-5 text-4xl md:text-5xl font-semibold text-gray-800 dark:text-gray-300">
2021-03-30 18:34:40 +00:00
{children}
</h1>
)
}
export const H2: React.FC = ({ children }) => {
2021-03-30 18:34:40 +00:00
return (
2021-05-11 12:03:26 +00:00
<h2 className="mb-5 text-3xl font-semibold text-gray-800 dark:text-gray-300">
{children}
</h2>
2021-03-30 18:34:40 +00:00
)
}