/** * WordPress dependencies */ import { __experimentalHStack as HStack } from '@wordpress/components'; /** * Internal dependencies */ import TypographyExample from './typography-example'; import PreviewWrapper from './preview-wrapper'; interface StylesPreviewTypographyProps { variation: any; isFocused?: boolean; withHoverView?: boolean; } const StylesPreviewTypography = ( { variation, isFocused, withHoverView, }: StylesPreviewTypographyProps ) => { return ( { ( { ratio, key } ) => ( ) } ); }; export default StylesPreviewTypography;