UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

7 lines (6 loc) 302 B
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime"; /** Wrapper for repeating elements */ const Skeleton = ({ children, repeat = 1 })=>/*#__PURE__*/ _jsx(_Fragment, { children: Array(repeat).fill(children) }); Skeleton.displayName = "Skeleton"; export default Skeleton;