diff --git a/src/components/skeleton/skeleton_circle.tsx b/src/components/skeleton/skeleton_circle.tsx index 0bbe9cb2331..e2e13b6b64e 100644 --- a/src/components/skeleton/skeleton_circle.tsx +++ b/src/components/skeleton/skeleton_circle.tsx @@ -9,8 +9,8 @@ import React, { FunctionComponent, HTMLAttributes } from 'react'; import classNames from 'classnames'; +import { useEuiMemoizedStyles } from '../../services'; import { CommonProps } from '../common'; -import { useEuiTheme } from '../../services'; import { EuiSkeletonLoading, _EuiSkeletonAriaProps } from './skeleton_loading'; import { euiSkeletonCircleStyles } from './skeleton_circle.styles'; @@ -36,8 +36,7 @@ export const EuiSkeletonCircle: FunctionComponent = ({ children, ...rest }) => { - const euiTheme = useEuiTheme(); - const styles = euiSkeletonCircleStyles(euiTheme); + const styles = useEuiMemoizedStyles(euiSkeletonCircleStyles); const cssStyles = [styles.euiSkeletonCircle, styles[size]]; return ( diff --git a/src/components/skeleton/skeleton_rectangle.tsx b/src/components/skeleton/skeleton_rectangle.tsx index aea4b26816b..8c7ca1db71a 100644 --- a/src/components/skeleton/skeleton_rectangle.tsx +++ b/src/components/skeleton/skeleton_rectangle.tsx @@ -9,8 +9,8 @@ import React, { FunctionComponent, HTMLAttributes } from 'react'; import classNames from 'classnames'; +import { useEuiMemoizedStyles } from '../../services'; import { CommonProps } from '../common'; -import { useEuiTheme } from '../../services'; import { logicalStyles } from '../../global_styling'; import { EuiSkeletonLoading, _EuiSkeletonAriaProps } from './skeleton_loading'; @@ -44,8 +44,7 @@ export const EuiSkeletonRectangle: FunctionComponent< children, ...rest }) => { - const euiTheme = useEuiTheme(); - const styles = euiSkeletonRectangleStyles(euiTheme); + const styles = useEuiMemoizedStyles(euiSkeletonRectangleStyles); const cssStyles = [styles.euiSkeletonRectangle, styles[borderRadius]]; return ( diff --git a/src/components/skeleton/skeleton_title.tsx b/src/components/skeleton/skeleton_title.tsx index 7186bd3ed8e..82fc4cf7d55 100644 --- a/src/components/skeleton/skeleton_title.tsx +++ b/src/components/skeleton/skeleton_title.tsx @@ -9,8 +9,8 @@ import React, { FunctionComponent, HTMLAttributes } from 'react'; import classNames from 'classnames'; +import { useEuiMemoizedStyles } from '../../services'; import { CommonProps } from '../common'; -import { useEuiTheme } from '../../services'; import { EuiTitleSize } from '../title'; import { EuiSkeletonLoading, _EuiSkeletonAriaProps } from './skeleton_loading'; @@ -37,8 +37,7 @@ export const EuiSkeletonTitle: FunctionComponent = ({ children, ...rest }) => { - const euiTheme = useEuiTheme(); - const styles = euiSkeletonTitleStyles(euiTheme); + const styles = useEuiMemoizedStyles(euiSkeletonTitleStyles); const cssStyles = [styles.euiSkeletonTitle, styles[size]]; return (