This repository was archived by the owner on Apr 4, 2023. It is now read-only.
This repository was archived by the owner on Apr 4, 2023. It is now read-only.
Support for React-Native specific properties #58
Closed
Description
There are several CSS properties that are specific to React-Native that are supported by styled-components/native
. For example the following properties are part of React-Native but appear as errors when using this plugin:
const Main = styled.View`
shadow-color: black;
shadow-opacity: 0.5;
shadow-offset: 2px 2px;
`
Would React-Native specific properties be something to consider supporting?