import * as React from 'react'; import classnames from 'classnames'; import { DescriptionSection } from '../../typings/story-section'; import Markdown from '../../Markdown'; import styles from './styles.scss'; import { SkeletonRectangle } from '../../SkeletonRectangle/SkeletonRectangle'; export const description: (a: DescriptionSection) => React.ReactNode = ({ dataHook = '', text, size = 'normal', width = '100%', loading, }) => loading ? ( ) : (
{typeof text === 'string' ? ( ) : ( text )}
);