forked from cerc-io/snowballtools-base
* ⚡️ feat: create heading component * ♻️ refactor: move sidebar inside shared components * ⚡️ feat: add polymorphic prop type for heading component * 🎨 style: re-styling project list page * ♻️ refactor: remove `.env` * 🎨 style: set default font weight to normal for heading component
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { tv, type VariantProps } from 'tailwind-variants';
|
|
|
|
export const headingTheme = tv({
|
|
base: ['text-elements-high-em', 'font-display', 'font-normal'],
|
|
});
|
|
|
|
export type HeadingVariants = VariantProps<typeof headingTheme>;
|