@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
16 lines (15 loc) • 663 B
TypeScript
import { Theme } from '@plurid/plurid-themes';
export interface IStyledFormbutton {
theme: Theme;
level: number;
inactive: boolean;
devisible: boolean;
hoverEffect: boolean;
}
export declare const StyledFormbutton: import("styled-components").StyledComponent<"div", any, IStyledFormbutton, never>;
export interface IStyledFormbuttonIcon {
theme: Theme;
position: 'left' | 'center' | 'right';
}
export declare const StyledFormbuttonIcon: import("styled-components").StyledComponent<"div", any, IStyledFormbuttonIcon, never>;
export declare const StyledFormbuttonText: import("styled-components").StyledComponent<"div", any, {}, never>;