Creates a set of border width 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, BorderWidthCorners } from '@ef-carbon/react-native-style';
const constants = new Constants();
const width = new BorderWidthCorners({ width: constants.border.width });
const style: ViewStyle = {
...width.top.normal,
...width.left.larger,
...width.right.smaller,
...width.bottom.small,
}
```
Creates a set of border width 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.