UNPKG

@root-axis/design-system

Version:

Yep! Just another Design System out there in the wild, wild web 🤠

19 lines (18 loc) • 547 B
import { LitElement, TemplateResult } from 'lit'; export interface ButtonProps { slot?: string; type?: "primary" | "secondary" | "tertiary"; size?: "small" | "medium"; disabled?: boolean; dark?: boolean; onClick?: (event: Event) => void; } export declare class Button extends LitElement { type: "primary" | "secondary" | "tertiary"; size: "small" | "medium"; disabled: boolean; dark: boolean; onClick?: (event: Event) => void; static styles: import('lit').CSSResult; render(): TemplateResult; }