import React, { type CSSProperties } from 'react' import styles from './_skeleton.module.scss' export type SkeletonProps = { /** Optionally override the height style property */ height?: CSSProperties['height'] /** Optionally override the width style property */ width?: CSSProperties['width'] /** Optionally override the border radius style property */ borderRadius?: CSSProperties['borderRadius'] /** Optional prop to add a test id to the Skeleton for QA testing */ qaTestId?: string } const Skeleton = ({ height, width, borderRadius, qaTestId = 'skeleton', }: SkeletonProps): React.JSX.Element => { return (
) } const HeaderMetric = () => { return (