UNPKG

@skiyee/uni-ui

Version:

一个由原子化CSS驱动、符合直觉设计、高度定制化、面向AI时代的移动端 UI 库,助力开发者打造独特且差异化的移动端应用程序

74 lines (73 loc) 1.36 kB
//! @unocss-include /** * @skiyee/uni-ui v1.1.0 * @author skiyee(https://github.com/skiyee) * @license Apache License 2.0 * @copyright 2025-present skiyee All rights reserved. **/ import * as _skiyee_ucv10 from "@skiyee/ucv"; import { InferProps } from "@skiyee/ucv"; //#region src/styles/sk-checkbox.d.ts declare const SkCheckboxUcv: _skiyee_ucv10.MultiElementComponent<{ root: string; checkbox: string; icon: string; label: string; }, { size: { small: { checkbox: string; icon: string; label: string; }; medium: { checkbox: string; icon: string; label: string; }; large: { checkbox: string; icon: string; label: string; }; }; color: { brand: { icon: string; checkbox: string; }; success: { icon: string; checkbox: string; }; warning: { icon: string; checkbox: string; }; danger: { icon: string; checkbox: string; }; neutral: { icon: string; checkbox: string; }; }; disabled: { true: { root: string; }; false: {}; }; checked: { true: { icon: string; }; false: { checkbox: string; }; }; }>; type SkCheckboxUcvProps = InferProps<typeof SkCheckboxUcv>; //#endregion export { SkCheckboxUcv, SkCheckboxUcvProps };