UNPKG

amotify

Version:

UI Component for React,NextJS,esbuild

11 lines (10 loc) 1.24 kB
/// <reference types="react" /> import './module'; export type Device = '' | 'windows' | 'android' | 'iPhone' | 'iPad' | 'macOSX' | 'undefined'; export type Browser = '' | 'chrome' | 'firefox' | 'safari' | 'opera' | 'ie' | 'edge' | 'undefined'; export type ReactElement = React.ReactNode | React.ReactNode[]; export type Roundness = 0 | 1 | 2 | 3 | 4 | 5; export type DarkMode = 'light' | 'auto' | 'dark' | 'dim'; export type ThemeColor = 'comun' | 'leaf' | 'heart' | 'droplet' | 'brick' | 'flower' | 'lip' | 'wine' | 'theater' | 'bat' | 'poizon' | 'eggplant' | 'ufo' | 'alien' | 'tombstone' | 'ninja' | 'moon' | 'rain' | 'unicorn' | 'axe' | 'gem' | 'soap' | 'drizzle' | 'building' | 'fish' | 'icicles' | 'water' | 'tree1' | 'tree2' | 'tree3' | 'battery' | 'seedle' | 'greenTea' | 'oak' | 'salad' | 'cloudy' | 'lemon' | 'angel' | 'parasol' | 'pizza' | 'thunder' | 'latte' | 'island' | 'shovel' | 'coffee' | 'carrot' | 'cactus' | 'volcano' | 'choco' | 'industry' | 'gun' | 'galaxy' | 'line' | 'twitter' | 'amazon' | 'facebook' | 'android' | 'slackBlue' | 'slackGreen' | 'slackRed' | 'slackYellow' | 'slackBase' | 'googleBlue' | 'googleGreen' | 'googleYellow' | 'googleRed'; import * as StyleTags from './property'; export type { StyleTags };