From 100552f74b89e4920fe0e2f89da409ae9513527b Mon Sep 17 00:00:00 2001 From: Pranit Khadilkar Date: Thu, 26 Oct 2023 17:49:56 +0530 Subject: [PATCH] added support for extensionsHook for ShelfIcon --- src/common-elements/shelfs.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/common-elements/shelfs.tsx b/src/common-elements/shelfs.tsx index 8eb3d4a7..7114f5ff 100644 --- a/src/common-elements/shelfs.tsx +++ b/src/common-elements/shelfs.tsx @@ -1,5 +1,5 @@ import * as React from 'react'; -import styled from '../styled-components'; +import styled, { extensionsHook } from '../styled-components'; const directionMap = { left: '90deg', @@ -45,6 +45,8 @@ export const ShelfIcon = styled(IntShelfIcon)` fill: ${({ color, theme }) => (color && theme.colors.responses[color] && theme.colors.responses[color].color) || color}; } + + ${extensionsHook('ShelfIcon')}; `; export const Badge = styled.span<{ type: string }>`