import { FC } from 'react' import Svg, { Path } from 'react-native-svg' import { useTheme } from '../../../../providers/native' import { ChevronIconProps, RotateRecord } from './types' const ChevronIcon: FC = ({ isActive = false, color, width = '24', height = '25', direction = 'left', style, ...props }) => { const { colors } = useTheme() const defaultColor = color ?? colors.object.low const svgColor = isActive ? colors.primary.high : defaultColor const rotateDeg: RotateRecord = { right: '180deg', left: '0deg', down: '270deg', up: '90deg', } return ( ) } export default ChevronIcon