@root-axis/design-system
Version:
Yep! Just another Design System out there in the wild, wild web ðŸ¤
19 lines (18 loc) • 547 B
TypeScript
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;
}