@maherunlocker/custom-react-table
Version:
dynamic table based on react table v7
17 lines (16 loc) • 618 B
TypeScript
/// <reference types="react" />
import 'bootstrap/dist/css/bootstrap.min.css';
import { StyledButtonPropsType } from '../StyledButton';
export declare type StyledIconButtonPropsType = {
icon: string;
} & StyledButtonPropsType;
export declare const StyledIconButton: import("styled-components").StyledComponent<"button", any, {
variant: string;
children: import("react").ReactNode;
rounded?: boolean | undefined;
outline?: boolean | undefined;
disabled?: boolean | undefined;
block?: boolean | undefined;
} & import("reactstrap").ButtonProps & {
icon: string;
}, never>;