Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ashokaditya committed Jan 5, 2022
1 parent 7f32e83 commit 8621eb9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ export const StyledEuiFlexGridGroup = styled(EuiFlexGroup)`
const StyledEuiFlexGroup = styled(EuiFlexGroup)<{
isSmall: boolean;
}>`
font-size: ${({ isSmall, theme }) => (isSmall ? theme.eui.euiFontSizeXS : 'innherit')};
font-weight: ${({ isSmall }) => (isSmall ? '1px' : 'innherit')};
font-size: ${({ isSmall, theme }) => (isSmall ? theme.eui.euiFontSizeXS : 'inherit')};
font-weight: ${({ isSmall }) => (isSmall ? '1px' : 'inherit')};
`;

const CSS_BOLD: Readonly<React.CSSProperties> = { fontWeight: 'bold' };
Expand Down

0 comments on commit 8621eb9

Please sign in to comment.