Sha256: 30313b2161aaf02ae7d13a34b71d6468fbdd8cab9f694482f2b864a2aedf7751
Contents?: true
Size: 807 Bytes
Versions: 855
Compression:
Stored size: 807 Bytes
Contents
import React from 'react' import { Background } from '../..' import { Flex } from '../..' const BackgroundStatusSubtle = (props) => ( <Flex gap="md" justify="center" wrap > <Background backgroundColor="success_subtle" padding="xl" {...props} /> <br /> <Background backgroundColor="warning_subtle" padding="xl" {...props} /> <br /> <Background backgroundColor="error_subtle" padding="xl" {...props} /> <br /> <Background backgroundColor="info_subtle" padding="xl" {...props} /> <br /> <Background backgroundColor="neutral_subtle" padding="xl" {...props} /> <br /> </Flex> ) export default BackgroundStatusSubtle
Version data entries
855 entries across 855 versions & 2 rubygems