UNPKG

doj-react-adminlte

Version:

Simple and easy-to-use AdminLTE components for React

23 lines (18 loc) 669 B
import * as React from 'react'; export interface ValueButtonProps { /** * className gets and sets the value of the class attribute of the specified element. You can also add a CSS class in this prop to style a particular element. */ className?: string; /** * When the button is clicked, the corresponding function that is binded in this prop will trigger. */ onClick?: (...args: any[])=>any; /** * The value prop specifies the initial value for a ValueButton. */ value?: any; } export default class ValueButton extends React.Component<ValueButtonProps, any> { render(): JSX.Element; }