@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
19 lines (18 loc) • 605 B
TypeScript
import React from 'react';
import { ButtonProps } from 'reactstrap';
export declare type StyledButtonPropsType = {
variant: string;
children: React.ReactNode;
rounded?: boolean;
outline?: boolean;
disabled?: boolean;
block?: boolean;
} & ButtonProps;
export declare const StyledButton: import("styled-components").StyledComponent<"button", any, {
variant: string;
children: React.ReactNode;
rounded?: boolean | undefined;
outline?: boolean | undefined;
disabled?: boolean | undefined;
block?: boolean | undefined;
} & ButtonProps, never>;