import React from 'react'; import { SvgProps } from 'react-native-svg'; import type { ColorType } from '../../styles/Styles'; export interface CircularButtonProps { icon?: React.ReactElement | null; checked?: boolean; disabled?: boolean; colorType?: ColorType; onChange: (val: boolean) => void; size?: 'small' | 'medium'; }