Skip to main content

Usage

Begin by importing the mixins file from the abstracts directory. This file contains all the predefined mixins required for consistent typography styling.

@use '@circutor/ui/abstracts/cds-mixins' as mixins;

Once imported, you can include the desired mixin in your SCSS files using the @include directive. This allows you to apply predefined text styles to your components effortlessly.

.my-class {
@include mixins.cds-head-l;
}