import * as React from 'react';

declare interface propTypes {
    functionId?: string;
    name?: string;
    onClick: Function;
    iconId: string;
    title?: string;
    disabled?: boolean;
    color?: string;
}

export default class PicButton extends React.Component<propTypes> {}
