Skip to content

psoaresbj/styled-gen

Repository files navigation

styled-gen

Set of tools for styled-components

NPM JavaScript Style Guide

If you're migrating from v1 to v2, follow the migration guide.

What is styled-gen?

styled-gen is a collection of helper functions that simplify the integration of multiple styles as React props within your styled components. It provides shorthand properties for managing layout components without the need to style them separately.

generateProps usage example:

import { generateProps } from 'styled-gen';
import styled from 'styled-components';

cons MyStyledComp = styled.div`
  // your css...

  ${generateProps};
`;

export const MyComponent = () => (
  <div>
    <MyStyledComp $tAlign={{ md: 'center', xs: 'left' }}>
      Vestibulum auctor dapibus neque.
    </MyStyledComp>
  </div>
)

Documentation

Visit https://docs.page/psoaresbj/styled-gen to view full documentation.

License

MIT © psoaresbj

About

Set of tools for styled-components

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors