@brizy/ui
Version:
React elements in Brizy style
8 lines (7 loc) • 366 B
JavaScript
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 }));
};