@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
11 lines (10 loc) • 329 B
TypeScript
import { type Atom } from "@cn-ui/reactive";
import type { Component } from "solid-js";
import type { InputExpose } from ".";
/** 密码 icon */
export declare const PasswordControl: Component<InputExpose>;
/** 清空 icon */
export declare const ClearControl: Component<{
model?: Atom<string>;
onClear?: () => void;
}>;