@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
9 lines (8 loc) • 346 B
TypeScript
import type { SelectOptionsType } from "@cn-ui/reactive";
export interface AddressPickerProps {
options: {
label: string;
value: string;
}[][];
}
export declare const AddressPicker: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<AddressPickerProps, HTMLDivElement, SelectOptionsType[]>>;