Repository URL to install this package:
|
Version:
0.0.2 ▾
|
@skava/packages
/
features
/
Header
/
MiddleBar
/
SearchBar
/
SearchInput
/
actions
/
BarCodeButton.d.ts
|
|---|
/**
* @fileoverview
* this will be moved to organisms for barcode scanning later
*
* @event !!!! PLEASE DO NOT DEV ON THIS WITHOUT FINISHING AN ARCHITECTURE
*/
import * as React from 'react';
export interface BarCodeButtonProps {
onClick?: React.MouseEventHandler;
isVisible?: boolean;
}
declare class BarCodeButton extends React.PureComponent<BarCodeButtonProps> {
render(): JSX.Element;
}
export { BarCodeButton };
export default BarCodeButton;