
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-cva-tools
Advanced tools
Add cva's VariantProps to existing react components
Thank you for making cva (Class Variance Authority).
npm i class-variance-authority react-cva-tools
yarn add class-variance-authority react-cva-tools
For Tailwind CSS IntelliSense Vscode extension, you can add the following to you setting.json
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
["withCva\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
["withVariants\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"],
]
withVariants(component: React.ElementType, ...cvaArgs: Parameters<typeof cva>)
create a Button component with 'button'
// components/Button.tsx
export const Button = withVariants('button', ['btn', 'font-bold'], {
variants: {
intent: {
primary: 'bg-blue-700 hover:bg-blue-800 text-gray-100',
},
padding: {
small: '',
medium: 'py-1 px-2',
},
round: {
small: 'rounded-sm',
medium: 'rounded',
full: 'rounded-full',
},
shadow: {
medium: 'shadow',
},
},
defaultVariants: {
padding: 'medium',
round: 'medium',
shadow: 'medium',
},
});
<Button
id="a-btn"
className="test-btn"
variants={{
intent: 'primary',
}}
onClick={(e) => {
alert('Click!!');
}}
>
click
</Button>
<button
id="a-btn"
class="btn font-bold bg-blue-700 hover:bg-blue-800 text-gray-100 py-1 px-2 rounded shadow test-btn"
>
click
</button>
export const Box: FC<ComponentPropsWithoutRef<'div'>> = ({ ...props }) => (
<div {...props} />
);
export const FlexBox = withVariants(Box, null, {
variants: {
flex: {
row: 'flex flex-row',
},
},
});
create a CircleButton by passing default variants parameters to Button
import { Button } from '@components/Button';
export const CircleButton = withDefaultVariants(Button, {
round: 'full',
className: 'w-12 h-12',
});
<CircleButton className="test" />
<button
class="btn font-bold py-1 px-2 rounded-full shadow test w-12 h-12"
></button>
create a Button component with cva. The result is the same as using withVariants
const buttonCva = cva(['btn', 'font-bold'], {
variants: {
intent: {
primary: 'bg-blue-700 hover:bg-blue-800 text-gray-100',
},
padding: {
small: '',
medium: 'py-1 px-2',
},
round: {
small: 'rounded-sm',
medium: 'rounded',
full: 'rounded-full',
},
shadow: {
medium: 'shadow',
},
},
defaultVariants: {
padding: 'medium',
round: 'medium',
shadow: 'medium',
},
});
export const Button = withCva('button', buttonCva);
<Button
id="a-btn"
className="test-btn"
variants={{
intent: 'primary',
}}
onClick={(e) => {
alert('Click!!');
}}
>
click
</Button>
<button
id="a-btn"
class="btn font-bold bg-blue-700 hover:bg-blue-800 text-gray-100 py-1 px-2 rounded shadow test-btn"
>
click
</button>
FAQs
Add cva's `VariantProps` to existing react components
We found that react-cva-tools demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.