UNPKG

@ssplib/react-components

Version:
9 lines (8 loc) 322 B
import { ButtonProps } from '@mui/material'; import tinycolor from 'tinycolor2'; interface CustomButton extends ButtonProps { customColor?: tinycolor.ColorInput; customFontColor?: tinycolor.ColorInput; } export default function Bt({ customColor, customFontColor, ...props }: CustomButton): JSX.Element; export {};