swiftui-react-native
Version:
A React Native component library inspired by SwiftUI
34 lines (32 loc) • 535 B
text/typescript
export type BlendMode =
| 'color'
| 'colorBurn'
| 'colorDodge'
| 'darken'
| 'difference'
| 'exclusion'
| 'hardLight'
| 'hue'
| 'lighten'
| 'luminosity'
| 'multiply'
| 'overlay'
| 'saturation'
| 'screen'
| 'softLight'
| 'sourceAtop'
| 'destinationOver'
| 'destinationOut'
| 'plusDarker'
| 'plusLighter'
| 'normal';
export type ClipShape =
| 'circle'
| 'roundedRectangle'
| 'capsule'
| 'rectangle'
| 'ellipse'
| {
shape: 'roundedRectangle';
cornerRadius: number;
};