UNPKG

@project-jade-garden/kobalte

Version:
22 lines (21 loc) 967 B
import { SVATraits } from 'jade-garden'; /** * **Button** * @description Enables users to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation. * @see [source](https://kobalte.dev/docs/core/components/button#anatomy) */ export declare const slots: readonly ["root"]; /** * **Button** * @description Enables users to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation. * @see [source](https://kobalte.dev/docs/core/components/button#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Button** * @description Enables users to trigger an action or event, such as submitting a form, opening a dialog, canceling an action, or performing a delete operation. * @see [source](https://kobalte.dev/docs/core/components/button#api-reference) */ export type Traits = SVATraits<Slots, { root: {}; }>;