UNPKG

@brizy/ui

Version:
8 lines (7 loc) 366 B
import React from "react"; import AntSkeleton from "antd/lib/skeleton"; import { BRZ_PREFIX } from "../constants"; export const SkeletonDisplayText = (props) => { const { active, round } = props; return (React.createElement(AntSkeleton, { active: active, round: round, className: `${BRZ_PREFIX}-skeleton-display__text`, title: true, paragraph: false })); };