Welcome to rothko-ui, an expressive react component library designed with flexibility in mind.
-
@rothko-ui/react
The main package containing all components. -
@rothko-ui/system
Shared components, helper functions, and React hooks. -
@rothko-ui/icons
A set of customizable SVG icons. -
@rothko-ui/tokens
A style system to generates CSS variables for theming.
Rothko-ui is built off of tailwindcss v4.x. To use rothko-ui, first follow the installation guide in the official docs.
Once you've gotten tailwind set-up, you can now install the rothko packages:
yarn add @rothko-ui/react @rothko-ui/icons @rothko-ui/tokens
Wherever you've added @import "tailwindcss";
In you globals.css
file, you'll need to register the rothko source files. You can do so using the @source
directive.
@import 'tailwindcss';
@source '../../node_modules/@rothko-ui';
Note: Depending on the structure of your project, node_modules
may be located in a different location.
For more information on registering source files see the tailwindcss docs.
You'll then need to add the theme tokens you installed in first step.
@import 'tailwindcss';
@source "../../node_modules/@rothko-ui";
@import '@rothko-ui/tokens/style.css';
After setting up you global.css
file, you can now import and use the components:
import { Button } from '@rothko-ui/react';
function MyComponent() {
return <Button>Click Me</Button>;
}
The @rothko-ui/icons
package provides a range of useful SVG icons:
import { HeartIcon } from '@rothko-ui/icons';
function MyComponent() {
return <HeartIcon />;
}
In Next.js with Server-Side Rendering (SSR), components that utilize React Context from rothko-ui require the 'use client' directive. This is because React Context relies on client-side rendering, and it is not supported in SSR.
To ensure that components that depend on React Context from rothko-ui function correctly, you must add the 'use client' directive at the top of the component file. Here’s an example:
'use client';
import { Accordion, AccordionPanel } from '@rothko-ui/react';
import MyComponent from './MyComponent';
export default function App() {
return (
<Accordion>
<AccordionPanel label="My Label 1">
Content 1
</AddordionPanel>
<AccordionPanel label="My Label 2">
Content 2
</AddordionPanel>
</Accordion>
);
}
This directive tells Next.js that the component (and its children) should be rendered on the client side, enabling React Context to work as expected.
For more information, visit the official next.js docs.
@luxo-ai luxo.ai@proton.me
Support the project: 0x7A67fF6354d983B6cfc3a7f7C5BA93f73C864b32
MIT