I want to do like I always did in React with Styled Components.
import styled from "styled-components";
import {Wrapper as CardComponent} from '../../components/Card/style';
export const Wrapper = styled.div`
${CardComponent}{
...the styles
}
`
But this isn't working with React Native.
import styled from "styled-components/native";
import {Wrapper as CardComponent} from '../../components/Card/style';
export const Wrapper = styled.View`
${CardComponent}{
...the styles
}
`
There is any way to target and set rules between styled components in react native?