import { FC } from 'react' import Svg, { G, Path } from 'react-native-svg' import { useTheme } from '../../../../providers/native' import { SvgIconProps } from '../types' const OptionsIcon: FC = ({ isActive = false, color, width = '25', height = '24', ...props }) => { const { colors } = useTheme() const defaultColor = color ?? colors.object.high const svgColor = isActive ? colors.primary.high : defaultColor return ( ) } export default OptionsIcon