import React from 'react';
const uploadStyle: React.CSSProperties = {
position: 'absolute',
top: '-30px',
right: '-19px',
width: '30px',
height: '30px'
};
const arrowStyle: React.CSSProperties = {
width: '30px',
height: '30px',
position: 'absolute',
bottom: '-5px',
left: '3px'
};
const HelpIconStyle: React.CSSProperties = {
width: '30px',
height: '30px',
position: 'absolute',
bottom: '25px'
};
const MoveIconStyle: React.CSSProperties = {
width: '30px',
height: '30px',
bottom: '0px',
cursor: 'grab'
};
export const UploadIcon = (): JSX.Element => (
);
export const AlertIcon = () => (
);
export const RightArrowIcon = (): JSX.Element => (
);
export const DownArrowIcon = (): JSX.Element => (
);
export const HelpIcon = (): JSX.Element => (
);
export const GrabIcon = (): JSX.Element => (
);
export const EditIcon = (): JSX.Element => (
);
export const StopwatchIcon = (): JSX.Element => (
);
export const ChatIcon = (): JSX.Element => (
);
export const ViewIcon = (): JSX.Element => (
);
export const FileIcon = (): JSX.Element => (
);
export const TrashIcon = (): JSX.Element => (
);
export const RepeatIcon = (): JSX.Element => (
);