diff --git a/src/components/SmartHRLogo/SmartHRLogo.tsx b/src/components/SmartHRLogo/SmartHRLogo.tsx index 16681182e6..a7514df04d 100644 --- a/src/components/SmartHRLogo/SmartHRLogo.tsx +++ b/src/components/SmartHRLogo/SmartHRLogo.tsx @@ -16,7 +16,7 @@ export const SmartHRLogo: FC = ({ fill = '#fff', className = '', }) => ( - + {title} @@ -24,18 +24,18 @@ export const SmartHRLogo: FC = ({ ) -const Wrapper = styled.figure<{ width: number; height: number; fill: string }>` - ${({ width, height, fill }) => { +const Wrapper = styled.figure<{ $width: number; $height: number; $fill: string }>` + ${({ $width, $height, $fill }) => { return css` display: inline-block; margin: 0; padding: 0; - width: ${width}px; - height: ${height}px; + width: ${$width}px; + height: ${$height}px; > svg { display: inline-block; - fill: ${fill}; + fill: ${$fill}; } ` }}