UNPKG

@ticketmaster/aurora

Version:

Shared UI Library for Ticketmaster

13 lines (12 loc) 497 B
import { StyledComponent } from "styled-components"; import { Size, ButtonVariant } from "../constants"; interface StyledButtonProps { readonly size: Size; readonly variant: ButtonVariant; readonly noTransform?: boolean; disabled?: boolean; type?: "button" | "submit" | "reset"; } export declare const StyledButton: StyledComponent<"button", any, StyledButtonProps, never>; export declare const StyledButtonLink: StyledComponent<"a", any, StyledButtonProps, never>; export {};