Skip to content

Build time atomic CSS-in-JS. Baked and ready to serve.

License

Notifications You must be signed in to change notification settings

adevnadia/compiled

 
 

Repository files navigation

Compiled

Build time atomic CSS-in-JS. Baked and ready to serve.

Apache 2.0 @compiled/react PRs welcome

Get started now →

Usage

import { styled, ClassNames } from '@compiled/react';

// Tie styles to an element
<div css={{ color: 'purple' }} />;

// Create a component that ties styles to an element
const StyledButton = styled.button`
  color: ${(props) => props.color};
`;

// Create a component which styles are not necessarily tied to an element
<ClassNames>{({ css }) => children({ className: css({ fontSize: 12 }) })}</ClassNames>;

Installation

Install the React package:

npm install @compiled/react

Configure Babel:

{
  "plugins": ["@compiled/react/babel-plugin"]
}

Contributions

Contributions to Compiled are welcomed! Please see CONTRIBUTING.md for details.

Thanks

Chromatic

Thanks to Chromatic for providing the visual testing platform that helps us review UI changes and catch visual regressions.

Atlassian

About

Build time atomic CSS-in-JS. Baked and ready to serve.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 98.6%
  • JavaScript 1.2%
  • Shell 0.2%