@skiyee/uni-ui
Version:
一个由原子化CSS驱动、符合直觉设计、高度定制化、面向AI时代的移动端 UI 库,助力开发者打造独特且差异化的移动端应用程序
95 lines (94 loc) • 1.53 kB
TypeScript
//! @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_ucv3 from "@skiyee/ucv";
import { InferProps } from "@skiyee/ucv";
//#region src/styles/sk-badge.d.ts
declare const SkBadgeUcv: _skiyee_ucv3.MultiElementComponent<{
root: string;
badge: string;
}, {
size: {
small: {
badge: string;
};
medium: {
badge: string;
};
large: {
badge: string;
};
};
color: {
brand: {
badge: string;
};
success: {
badge: string;
};
warning: {
badge: string;
};
danger: {
badge: string;
};
neutral: {
badge: string;
};
};
placement: {
'top-right': {
badge: string;
};
'top-left': {
badge: string;
};
'bottom-right': {
badge: string;
};
'bottom-left': {
badge: string;
};
};
shape: {
circle: {
badge: string;
};
rectangle: {
badge: string;
};
dot: {
badge: string;
};
};
standalone: {
true: {
root: string;
badge: string;
};
false: {};
};
boundless: {
true: {
badge: string;
};
false: {
badge: string;
};
};
hidden: {
true: {
badge: string;
};
false: {
badge: string;
};
};
}>;
type SkBadgeUcvProps = InferProps<typeof SkBadgeUcv>;
//#endregion
export { SkBadgeUcv, SkBadgeUcvProps };