Build React components using utility classes in the styled-components
way!
β
Use any library you want: TailwindCSS, UnoCSS, WindiCSS
β
Server Component is fully supported
β
Tiny bundle size (3.8KB)
import { utld, ud } from "utility-class-components";
const boxStyle = ud`
w-32
h-32
bg-red-200
`;
const Container = utld.div<{ $isRed: boolean }>`
flex
text-bold
${boxStyle}
${({ $isRed }) => $isRed && "text-red-500"}
`;
function Page() {
return <Container $isRed={true}>AWESOME!!</Container>;
}
This package is published on npm registry.
npm i utility-class-components
# or yarn add utility-class-components
If you have installed the "Tailwind CSS IntelliSense" extenstion in VSCode, you can enable autocompletion inside utld
and ud
.
Add the following to your settings.json
:
{
"tailwindCSS.experimental.classRegex": [
"utld(?:\\.[a-z0-9]*|\\([^)]*\\))(?:<[^>]*>|)`([^`]*)`",
"ud`([^`]*)`"
]
}
import { utld } from "utility-class-components";
const Container = utld.div`
flex
text-bold
`;
// You can also extend the style of other React components.
const RedContainer = utld(Container)`
bg-red-500
`;
import { utld, ud } from "utility-class-components";
const commonStyle = ud`
text-red-500
hover:text-blue-500
`;
// You can nest `ud` inside other `ud` or `utld`.
const Container = utld.div`
${ud`
text-red-500
hover:text-blue-500
${ud`
w-32
h-32
`}
`}
`;
You can use array in all template literals.
const Container = utld.div`
${["flex flex-col", "text-red-500"]}
`;
You can also use nested arrays.
const Container = utld.div`
${["flex flex-col", ["text-bold", "text-red-500"]]}
`;
You can pass props to the utld
component using generics.
const Container = utld.div<{ $type: "red" | "blue" }>`
${({ $type }) => ($type === "red" ? "bg-red-500" : "bg-blue-500")}
w-32
h-32
`;
const Page = () => {
return <Container $type='red'>Hello</Container>;
};
This also can be done using another React component.
const Box = ({ className }: { className?: string }) => {
return <div className={className}>Hello</div>;
};
const Container = utld(Box)<{ $type: "red" | "blue" }>`
${({ $type }) => ($type === "red" ? "bg-red-500" : "bg-blue-500")}
w-32
h-32
`;
const Page = () => {
return <Container $type='red'>Hello</Container>;
};
Currently, this feature is not available in
ud
.
If you want to prevent certain props from being passed to an underlying React component or rendered on a DOM element, you can prefix the prop name with a $
(dollar sign).
const Box = utld.div<{ $isRed: boolean }>`
${({ $isRed }) => $isRed && "bg-red-500"}
w-32
h-32
`;
// `$isRed` prop will not be rendered in the DOM
This feature is useful when you encounter the warning
React does not recognize the X prop on a DOM element.
You can also pass a ForwardRefExoticComponent
to utld
, which can be created using React.forwardRef
.
const ForwardedInput = React.forwardRef<HTMLInputElement, ComponentPropsWithoutRef<"input">>(
(props, ref) => {
return <input ref={ref} {...props} />;
},
);
const Input = utld(ForwardedInput)`
bg-red-500
`;
const Page = () => {
const inputRef = React.useRef<HTMLInputElement>(null);
return <Input ref={inputRef} />;
};
You can group variants in the following way :
export const Link = utld.a`
hover:(text-accent-light dark:text-accent-dark)
`;
// Line breaks can also be added
export const Box = utld.div`
hover:(
text-accent-light
dark:text-accent-dark
)
`;
// You can nest grops
export const NestedBox = utld.div`
hover:(
text-accent-light
dark:(
text-accent-dark
bg-red-500
)
)
`;
During runtime, this will be transformed into "transition-colors hover:text-accent-light hover:dark:text-accent-dark)"
.
To enable this feature, you need to add a transformer to the utility class library you are using. This transformer will allow the library to generate styles for hover:text-accent-light hover:dark:text-accent-dark
.
For example, if you are using TailwindCSS, you can add the following code to your tailwind.config.js
file:
const { transformGroupSelector } = require("utility-class-components");
module.exports = {
content: {
files: [
// your target files
],
transform: {
tsx: (code) => {
code = transformGroupSelector(code);
return code;
},
// add jsx if you are using it
},
},
// ...
};
CAUTION: This may cause some issues.
Furthermore, you should add the following configuration to your VSCode settings.json
file:
{
"tailwindCSS.lint.cssConflict": "ignore"
}
This is necessary because Tailwind CSS IntelliSense is not aware of how grouping variants work. Please note that by disabling this lint, you will not receive warnings if you attempt to set conflicting styles.
const Page = () => {
// The following className will not trigger a lint warning anymore.
return <div className='text-red-500 text-blue-500'>No Warning</div>;
};
When using utility class libraries, it's important to note that dynamic styles cannot be used due to the limitations of such libraries.
const style = `w-${width}`; // β
const style = "w-[100px]"; // ππ
To override the style of a utility class library, you may need to use the !important
declaration.
Using libraries like
tailwind-merge
could be a good option. However, since this library is not exclusively designed for Tailwind CSS, such a feature is not included.
const Box = utld.div`
bg-red-500
`;
const StyledBox = utld(Box)`
!bg-green-500
`;
// You should use `!` to override the background color