@plurid/plurid-ui-components-react
Version:
Plurid User Interface Components for React
17 lines (16 loc) • 487 B
TypeScript
import React from 'react';
import { Theme } from '@plurid/plurid-themes';
export interface VerticalToolbarButtonOwnProperties {
atClick: (event: React.MouseEvent) => void;
icon: React.FC;
active: boolean;
text: string;
textLeft: boolean;
showText: boolean;
scaleIcon: boolean;
theme: Theme;
first?: boolean;
last?: boolean;
}
declare const VerticalToolbarButton: React.FC<VerticalToolbarButtonOwnProperties>;
export default VerticalToolbarButton;