Sha256: 4d1b19c469914a43a764fb66d88119fa702b9cb092ce24c2b8f7c6614037f4ce
Contents?: true
Size: 819 Bytes
Versions: 1007
Compression:
Stored size: 819 Bytes
Contents
import React from 'react' import { Background } from 'playbook-ui' import { Flex } from 'playbook-ui' 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
1,007 entries across 1,007 versions & 2 rubygems