/** * * ConfirmDialog Design Tokens * * @module confirmdialog * */ import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..'; /** * Design Token Sections */ export declare namespace ConfirmDialogTokenSections { interface Icon { /** * Size of icon * * @designToken confirmdialog.icon.size */ size?: string; /** * Color of icon * * @designToken confirmdialog.icon.color */ color?: string; } interface Content { /** * Gap of content * * @designToken confirmdialog.content.gap */ gap?: string; } /* Static Sections */ type ColorScheme = CS; type CSS = ExtendedCSS; type Extend = ExtendedTokens; } /** * * _ConfirmDialog Design Tokens_ * * @group components * @module confirmdialog * @see * --- --- * **Compatible Libraries** * * [Optimus UI](https://optimus.openng.org/theming/styled) * */ export interface ConfirmDialogDesignTokens extends DesignTokens { /** * Used to pass tokens of the icon section */ icon?: ConfirmDialogTokenSections.Icon; /** * Used to pass tokens of the content section */ content?: ConfirmDialogTokenSections.Content; }