UNPKG

@alephium/web3-react

Version:
15 lines (14 loc) 463 B
import React from 'react'; import { ThemeContainer } from './styles'; import { CustomStyle } from '../../../types'; type ThemedButtonProps = { children?: React.ReactNode; variant?: 'primary' | 'secondary' | 'tertiary'; autoSize?: boolean; duration?: number; style?: React.CSSProperties; onClick?: () => void; }; declare const ThemedButton: React.FC<ThemedButtonProps & CustomStyle>; export default ThemedButton; export { ThemeContainer };