# Circle

```JS
    import { Circle } from 'react-native-painter'
    <Painter style={styles.Painter} 
    >
        <Circle />      
    </Painter>
```

## Props

| Name | description | type | default |
| --- | --- | --- | --- |
| cx | the x coordinates of the center of the circle | Number | 0 |
| cy | the y coordinates of the center of the circle | Number | 0 |
| r | the radius of the circle | Number | 0 |

