UNPKG

@root-axis/design-system

Version:

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

12 lines (11 loc) • 281 B
import { LitElement, TemplateResult } from 'lit'; export interface BadgeProps { slot: string; dark?: boolean; } export declare class Badge extends LitElement { static styles: import('lit').CSSResult; slot: string; dark: boolean; render(): TemplateResult; }