A library that allows you to use CSS in your React and React Native projects with a modern, powerful and flexible way. dank
allows you to write CSS using JavaScript, which enables you to take advantage of the power and expressiveness of both languages. With its simple and intuitive API, you can easily create dynamic styles, responsive design, and handle themes for your applications..
You can find detailed documentation for each component, including a list of props and examples, in https://dank.style/docs website.
-
Dynamic styles: Using JavaScript expressions, you can create dynamic styles that change based on the state of your components.
-
Server-side rendering (SSR) support: This allows you to use the same styles on the server and the client, making it easy to implement SSR for your React applications..
-
Responsive styling:: This allows you to easily create responsive styles that adapt to different screen sizes and resolutions.
-
Theme support: You can easily define and switch between different themes for your application, allowing for a consistent design across all pages.
-
Frequent updates: We are constantly working on improving the library and adding new components. Follow us on GitHub to stay up-to-date on the latest releases and features.
-
Community support: Need help using the library or have a suggestion for a new feature? Join our Discord channel to connect with the community and get support.
To use dank
, all you need to do is install the
@dank-style/react
package and its peer dependencies:
$ yarn add @dank-style/react
# or
$ npm i @dank-style/react
JavaScript, React, React Native, Styled System
To use the dank
in your project, follow these steps:
- Wrap your application with the
StyledProvider
provided by @dank-style/react.
import { StyledProvider } from '@dank-style/react';
// Do this at the root of your application
function App({ children }) {
return <StyledProvider>{children}</StyledProvider>;
}
- Now you can use
@dank-style/react
to style your components by using thestyled
function provided by the library. For example:
import React from 'react';
import { styled } from '@dank-style/react';
const StyledButton = styled(
Pressable,
{
bg: '$red500',
p: '$3',
},
{}
);
const StyledButtonText = styled(Text, {}, {});
export const App = () => {
return (
<StyledProvider>
<StyledButton>
<StyledButtonText>Button</StyledButtonText>
</StyledButton>
</StyledProvider>
);
};
More guides on how to get started are available here.
We welcome contributions to the dank
! If you have an idea for a new component or a bug fix, please read our contributing guide instructions on how to submit a pull request.
Licensed under the MIT License, Copyright © 2021 GeekyAnts. See LICENSE for more information.