styled-gen
v2.0.1
Published
Set of tools for css in js libs
Downloads
100
Maintainers
Readme
styled-gen
Set of tools for styled-components
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