// font family
@forward "./_font-family.scss";
@forward "./_font-size.scss";
// font smoothing
@forward "./_font-style.scss";
@forward "./_font-weight.scss";
// font variant
// letter spacing
@forward "./_letter-spacing.scss";
// line height
@forward "./_line-height.scss";
@forward "./_list-style.scss";
@forward "./_text-align.scss";
@forward "./_text-color.scss";
@forward "./_text-decoration.scss";
@forward "./_text-overflow.scss";
@forward "./_text-transform.scss";
// text indent
@forward "./_vertical-align.scss";
@forward "./_white-space.scss";

// font family
@use "./_font-family.scss" as *;
@use "./_font-size.scss" as *;
// font smoothing
@use "./_font-style.scss" as *;
@use "./_font-weight.scss" as *;
// font variant
// letter spacing
@use "./_letter-spacing.scss" as *;
// line height
@use "./_line-height.scss" as *;
@use "./_list-style.scss" as *;
@use "./_text-align.scss" as *;
@use "./_text-color.scss" as *;
@use "./_text-decoration.scss" as *;
@use "./_text-overflow.scss" as *;
@use "./_text-transform.scss" as *;
// text indent
@use "./_vertical-align.scss" as *;
@use "./_white-space.scss" as *;


@mixin kendo-utils--typography() {
    @include kendo-utils--typography--font-family();
    @include kendo-utils--typography--font-size();
    @include kendo-utils--typography--font-style();
    @include kendo-utils--typography--font-weight();
    @include kendo-utils--typography--letter-spacing();
    @include kendo-utils--typography--line-height();
    @include kendo-utils--typography--list-style-type();
    @include kendo-utils--typography--text-align();
    @include kendo-utils--typography--text-color();
    @include kendo-utils--typography--text-decoration();
    @include kendo-utils--typography--text-overflow();
    @include kendo-utils--typography--text-transform();
    @include kendo-utils--typography--vertical-align();
    @include kendo-utils--typography--white-space();
}
