export interface IIconWrapperProps {
    /**
     * isSelected property if true when the icon is clicked
     */
    isSelected: boolean;
    /**
     * Background Color property for Icon Wrapper component
     */
    backgroundColor?: string;
}
