Set of tools for styled-components
If you're migrating from v1 to v2, follow the migration guide.
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>
)
Visit https://docs.page/psoaresbj/styled-gen to view full documentation.
MIT © psoaresbj