UNPKG

@kahi-ui/framework

Version:

Straight-forward Svelte UI for the Web

13 lines (12 loc) 358 B
import type { LiteralEnum } from "./util"; /** * Represents the `object-fit` configuration tokens that can be applied to Framework Components */ export declare enum TOKENS_FIT { contain = "contain", cover = "cover", fill = "fill", none = "none", "scale-down" = "scale-down" } export declare type PROPERTY_FIT = LiteralEnum<TOKENS_FIT>;