UNPKG

@brizy/ui

Version:
8 lines (7 loc) 387 B
import React from "react"; import AntSkeletonAvatar from "antd/lib/skeleton/Avatar"; import { BRZ_PREFIX } from "../constants"; export const SkeletonThumbnail = (props) => { const { size = "default", active, shape = "square" } = props; return React.createElement(AntSkeletonAvatar, { className: `${BRZ_PREFIX}-skeleton-thumbnail`, size: size, shape: shape, active: active }); };