import * as React from 'react' import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native' import colors, { ColorValue } from 'src/styles/colors' interface Props { backgroundColor?: ColorValue radius?: number style?: StyleProp children?: React.ReactNode borderColor?: ColorValue } export default function CircledIcon({ backgroundColor = colors.accent, radius = 50, borderColor, style, children, }: Props) { return ( {children} ) } const styles = StyleSheet.create({ container: { justifyContent: 'center', alignItems: 'center', }, })