UNPKG

@shopify/polaris

Version:

Shopify’s admin product component library

12 lines (11 loc) 717 B
import React from 'react'; import { BaseButton } from '../../types'; export interface UnstyledButtonProps extends BaseButton { /** The content to display inside the button */ children?: React.ReactNode; /** A custom class name to apply styles to button */ className?: string; [key: string]: any; } export declare function UnstyledButton({ id, children, className, url, external, download, submit, disabled, loading, pressed, accessibilityLabel, role, ariaControls, ariaExpanded, ariaDescribedBy, ariaChecked, onClick, onFocus, onBlur, onKeyDown, onKeyPress, onKeyUp, onMouseEnter, onTouchStart, ...rest }: UnstyledButtonProps): JSX.Element; //# sourceMappingURL=UnstyledButton.d.ts.map