Files
frontend-svelte/src/shared/ui/Section/SectionTitle/SectionTitle.svelte
Ilia Mashkov 9b90080c57
All checks were successful
Workflow / build (pull_request) Successful in 3m29s
Workflow / publish (pull_request) Has been skipped
chore: change hex colors to tailwind bariables
2026-03-04 16:51:49 +03:00

20 lines
387 B
Svelte

<!--
Component: SectionTitle
Styled title for page section
-->
<script lang="ts">
interface Props {
/**
* Title text
*/
text?: string;
}
const { text }: Props = $props();
</script>
{#if text}
<h2 class="text-3xl md:text-4xl lg:text-5xl font-['Space_Grotesk'] font-bold text-swiss-black dark:text-neutral-200 tracking-tight">
{text}
</h2>
{/if}