UNPKG

@atlrdsgn/kit

Version:

An ever–expanding library of React components, primitives, and tools

13 lines (12 loc) • 653 B
import { ButtonVariantProps } from './button.css'; import { BaseButtonProps } from './button.types'; import { MotionProps } from 'framer-motion'; import { default as React } from 'react'; type ButtonElementProps = BaseButtonProps & ButtonVariantProps & MotionProps & React.ButtonHTMLAttributes<HTMLButtonElement> & React.AnchorHTMLAttributes<HTMLAnchorElement>; export type ButtonProps = ButtonElementProps; export declare const Button: { ({ children, type, onClick, href, target, rel, size, variant, font, ...rest }: ButtonProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {}; //# sourceMappingURL=button.d.ts.map