Sha256: 04a828c906f9fc6204106c2c389987525f23986b42c9ca2f7fb8b883dc1d4c9c
Contents?: true
Size: 1.01 KB
Versions: 414
Compression:
Stored size: 1.01 KB
Contents
import React from 'react' import { Flex, SkeletonLoading } from "playbook-ui" const SkeletonLoadingBorderRadius = (props) => ( <Flex justify="evenly"> <SkeletonLoading borderRadius="rounded" height="50px" width="100px" {...props} /> <SkeletonLoading borderRadius="xl" height="50px" width="100px" {...props} /> <SkeletonLoading borderRadius="lg" height="50px" width="100px" {...props} /> <SkeletonLoading borderRadius="md" height="50px" width="100px" {...props} /> <SkeletonLoading height="50px" width="100px" {...props} /> <SkeletonLoading borderRadius="xs" height="50px" width="100px" {...props} /> <SkeletonLoading borderRadius="none" height="50px" width="100px" {...props} /> </Flex> ) export default SkeletonLoadingBorderRadius
Version data entries
414 entries across 414 versions & 2 rubygems