aesthetic-react
Version:
React hooks, composers, and more for styling components with Aesthetic.
50 lines (37 loc) • 1.27 kB
Markdown
# Aesthetic via React
[](https://github.com/milesj/aesthetic/actions?query=branch%3Amaster)
[](https://www.npmjs.com/package/aesthetic-react)
[](https://www.npmjs.com/package/aesthetic-react)
Style React components with hooks or HOCs, using the powerful
[Aesthetic](https://github.com/milesj/aesthetic) library.
```tsx
import React from 'react';
import { useStyles } from 'aesthetic-react';
export type Props = {
children: React.ReactNode;
};
export default function Button({ children }: Props) {
const [styles, cx] = useStyles(({ unit }) => ({
button: {
textAlign: 'center',
display: 'inline-block',
padding: unit,
},
}));
return (
<button type="button" className={cx(styles.button)}>
{children}
</button>
);
}
```
## Requirements
- React 16.6+
## Installation
```
yarn add aesthetic aesthetic-react react
// Or
npm install aesthetic aesthetic-react react
```
## Documentation
[https://milesj.gitbook.io/aesthetic/integrations/react](https://milesj.gitbook.io/aesthetic/integrations/react)