fanyucomponents
Version:
一款以 純邏輯為核心、無樣式綁定 的 React 元件套件
14 lines (13 loc) • 329 B
TypeScript
/**
* 對齊方式
*/
export type alignOption = "start" | "center" | "end";
/**
* 排列方向
*/
export type directionOption = "horizon" | "vertical";
/**
* 狀態
*/
export declare const stateOptions: readonly ["enabled", "disabled", "hover", "focus", "pressed"];
export type stateOption = (typeof stateOptions)[number];