# Ellipse

```JS
    import { Ellipse } from 'react-native-painter'

    <Painter style={styles.Painter} 
    >
        <Ellipse />      
    </Painter>
```

## Props

| Name | description | type | default |
| --- | --- | --- | --- |
| cx | the x coordinates of the center  | Number | 0 |
| cy | the x coordinates of the center | Number | 0 |
| rx | rx attribute defines the horizontal radius | Number | 0 |
| ry | ry attribute defines the vertical radius | Number | 0 |

