0.1.0-beta.6
Pre-release
Pre-release
Changelog
Feature 🚀
- Added support for using component props to define styles using
styled
components. Check the example below:const StyledView = styled(View)<{ direction?: 'row' | 'column' }>((props) => { flexDirection: props.direction, }); // Usage <StyledView direction="row" />