goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
53 lines • 1.56 kB
TypeScript
export interface ConfirmationCodeInputStyles {
/**
* Theme variant — emitted as `data-theme` on the root element; selects the
* --cci-* token set in the CSS module (sacred is the default).
*/
theme?: 'light' | 'dark' | 'sacred';
/** Root background color. */
backgroundColor?: string;
/** Root background-image. */
backgroundImage?: string;
/** Root border color. */
borderColor?: string;
/** Root border radius. */
borderRadius?: string;
/** Root border width. */
borderWidth?: string;
/** Root box shadow. */
boxShadow?: string;
/** Root padding. */
padding?: string;
/** Gap between the main content blocks (--cci-gap). */
gap?: string;
/** Gap between the digit cells (--cci-input-gap). */
inputGap?: string;
/** Root margin shorthand. */
margin?: string;
/** Root top margin. */
marginTop?: string;
/** Root bottom margin. */
marginBottom?: string;
/** Root left margin. */
marginLeft?: string;
/** Root right margin. */
marginRight?: string;
/**
* Disables every digit input and dims the container
* (emitted as `data-disabled` on the root).
*/
disabled?: boolean;
/** Root width. */
width?: string;
/** Root max-width. */
maxWidth?: string;
/** Root min-width. */
minWidth?: string;
/** Root height. */
height?: string;
/** Root max-height. */
maxHeight?: string;
/** Root min-height. */
minHeight?: string;
}
//# sourceMappingURL=types.d.ts.map