@plurid/plurid-react
Version:
React implementation of Plurid to explore the web in three dimensions
16 lines (15 loc) • 393 B
TypeScript
import React from 'react';
export interface PluridToolbarButtonProperties {
image: any;
text: any;
atClick: any;
scaleImage?: boolean;
textLeft?: boolean;
showText?: boolean;
first?: boolean;
last?: boolean;
active?: boolean;
theme?: any;
}
declare const PluridToolbarButton: React.FC<PluridToolbarButtonProperties>;
export default PluridToolbarButton;