
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
@kodiak-ui/babel-plugin
Advanced tools
A babel plugin that hoists jsx attributes.
@kodiak-ui/babel-plugin is used to optimize sx attributes by hoisting anything that could be out of the render path.
.babelrc (Recommended).babelrc
Without options:
{
"plugins": ["@kodiak-ui"]
}
With options:
Defaults Shown
{
"plugins": [
[
"@kodiak-ui",
{
attributesToHoist: ["sx", "variants"]
}
]
]
}
attributesToHoistAn array of jsx attributes to hoist.
// Input
import { Box } from '@kodiak-ui/primitives'
function sxGenerator() {
return {
bg: 'green',
}
}
function App() {
const isTrue = true
return (
<div
sx={{
backgroundColor: 'blue',
'&:hover': {
color: 'lightgreen',
},
}}
>
This has a hotpink background.
<div
css={{ backgroundColor: isTrue ? 'red' : 'blue' }}
sx={{
color: isTrue ? 'red' : 'blue',
}}
onClick={() => null}
>
Another div that isn't hoisted
</div>
<Box
variants={['var1', 'var2']}
sx={{ background: 'blue' }}
aria-label="a label"
>
A box
</Box>
<Box sx={sxGenerator()}>Pure functions are also hoisted</Box>
</div>
)
}
// Output
↓ ↓ ↓ ↓ ↓ ↓
import * as React from 'react'; // or a jsx pragma
import { Box } from '@kodiak-ui/primitives';
function sxGenerator() {
return {
bg: 'green'
};
}
var _ref = {
backgroundColor: 'blue',
'&:hover': {
color: 'lightgreen'
}
};
var _ref2 = ['var1', 'var2'];
var _ref3 = {
background: 'blue'
};
var _ref4 = sxGenerator();
function App() {
const isTrue = true;
return <div sx={_ref}>
This has a hotpink background.
<div css={{
backgroundColor: isTrue ? 'red' : 'blue'
}} sx={{
color: isTrue ? 'red' : 'blue'
}} onClick={() => null}>
Another div that isn't hoisted
</div>
<Box variants={_ref2} sx={_ref3} aria-label="a label">
A box
</Box>
<Box sx={_ref4}>Pure functions are also hoisted</Box>
</div>;
}
FAQs
A babel plugin that hoists jsx attributes.
We found that @kodiak-ui/babel-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.