Creates a set of border radius mixins that can be used to apply styles to components easily. Requires a set of
length values to use as the basis for the style mixins.
example
Using the constants
```ts
import { ViewStyle } from 'react-native';
import { Constants, BorderRadiusEdges } from '@ef-carbon/react-native-style';
const constants = new Constants();
const radius = new BorderRadiusEdges({ radius: constants.border.radius });
const style: ViewStyle = {
...radius.topLeft.normal,
...radius.topRight.larger,
...radius.bottomLeft.smaller,
...radius.bottomRight.small,
}
```
Creates a set of border radius mixins that can be used to apply styles to components easily. Requires a set of length values to use as the basis for the style mixins.