Skip to content

Commit b9b0e3b

Browse files
committed
chore: typo fix
1 parent 82664f2 commit b9b0e3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/loaders/src/styled/StyledSkeleton.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const animationStyles = ({ theme }: ThemeProps<DefaultTheme>) => {
8585
`;
8686
};
8787

88-
const gradienStyles = (props: IStyledSkeletonProps & ThemeProps<DefaultTheme>) => {
88+
const gradientStyles = (props: IStyledSkeletonProps & ThemeProps<DefaultTheme>) => {
8989
return css`
9090
background-image: linear-gradient(
9191
${props.theme.rtl ? '-45deg' : '45deg'},
@@ -118,7 +118,7 @@ export const StyledSkeleton = styled.div.attrs({
118118
content: '';
119119
120120
${animationStyles}
121-
${gradienStyles}
121+
${gradientStyles}
122122
}
123123
124124
${props => retrieveComponentStyles(COMPONENT_ID, props)};

0 commit comments

Comments
 (0)