
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
cf-component-box
Advanced tools
Cloudflare Box Component This is styling component similar to cf-component-flex which allows for arbitrary styling. This component should only be used when the built in style doesn't quite fit the bill and when it can't be done with fela. Ideally, cfui
Cloudflare Box Component
This is styling component similar to cf-component-flex which allows for arbitrary styling.
This component should only be used when the built in style doesn't quite fit the bill and when it can't be done with fela. Ideally cfui components should have the right styling built in for most cases. In the few edge cases that pop up in real world feature development this is an alternative to wrapping your component in a <div>
or <span>
and styling it with css to accomodate one-offs.
Also note that using Box effectively performs a component level CSS reset as all props not provided will be pulled from the default theme. These defaults outlined in propertiesSpec either match the browser defaults or are taken from our global styles as defined by cf-style-const.
Installation with yarn is recommended
$ yarn add cf-component-box
import React from 'react';
import { Box } from 'cf-component-box';
const BoxComponent = () => (
<Box>
<Box margin="1rem" backgroundColor="thistle">
This is a box with a margin
</Box>
<Box padding="1rem" backgroundColor="blanchedalmond">
This is a box with padding
</Box>
<Box
padding="1rem"
marginTop="1rem"
borderTopColor="black"
borderTopWidth={1}
borderTopStyle="solid"
borderBottomColor="blue"
borderBottomWidth={1}
borderBottomStyle="groove"
borderLeftColor="teal"
borderLeftWidth={2}
borderLeftStyle="dashed"
borderRightColor="purple"
borderRightWidth={2}
borderRightStyle="dotted"
>
All the borders!
</Box>
<Box
display="inline-block"
margin="1rem"
padding="1rem"
width="40%"
textAlign="center"
backgroundColor="#3dd"
>
inline block
</Box>
<Box
margin="1rem"
padding="2rem"
backgroundColor="peachpuff"
display="inline-flex"
justifyContent="space-between"
width="40%"
>
<Box backgroundColor="lightsalmon" margin="1rem" padding="1rem">
Flex
</Box>
<Box backgroundColor="lightsalmon" margin="1rem" padding="1rem">
Flex
</Box>
<Box backgroundColor="lightsalmon" margin="1rem" padding="1rem">
Flex
</Box>
</Box>
<Box marginLeft="1rem">
<h4>Absolute Positioning</h4>
</Box>
<Box
marginLeft="1rem"
backgroundColor="aquamarine"
position="relative"
width={200}
height={200}
display="inline-block"
>
<Box
backgroundColor="pink"
position="absolute"
width={50}
height={50}
top={10}
left={10}
/>
<Box
margin="1rem"
backgroundColor="azure"
position="absolute"
width={100}
height={100}
bottom={10}
right={10}
/>
</Box>
<Box
margin="1rem"
padding="1rem"
backgroundColor="lightsalmon"
float="right"
>
Floated right
</Box>
</Box>
);
export default BoxComponent;
FAQs
Cloudflare Box Component This is styling component similar to cf-component-flex which allows for arbitrary styling. This component should only be used when the built in style doesn't quite fit the bill and when it can't be done with fela. Ideally, cfui
The npm package cf-component-box receives a total of 29 weekly downloads. As such, cf-component-box popularity was classified as not popular.
We found that cf-component-box demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 23 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.