Skip to content

Commit

Permalink
feat(toggletip): custom icon remove unused icon import
Browse files Browse the repository at this point in the history
  • Loading branch information
sangeethababu9223 committed Apr 4, 2024
1 parent 165a551 commit bb66322
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ import Information16 from '@carbon/icons/lib/information/16';
import View16 from '@carbon/icons/lib/view/16';
import Video16 from '@carbon/icons/lib/video/16';
import User16 from '@carbon/icons/lib/user/16';
import FolderOpen16 from '@carbon/icons/lib/folder--open/16';
import Folders16 from '@carbon/icons/lib/folders/16';

const tooltipAlignments = {
[`top`]: POPOVER_ALIGNMENT.TOP,
Expand Down Expand Up @@ -59,6 +57,8 @@ export const Default = (args) => {
case 'User16':
iconVal = User16;
break;
default:
iconVal = Information16;
}
return html`
<cds-toggletip alignment="${ifDefined(alignment)}" hasCustomIcon>
Expand Down

0 comments on commit bb66322

Please sign in to comment.