2026-07-02 14:34:19 +05:30

25 lines
589 B
TypeScript

import React from 'react';
import Svg, { Path } from 'react-native-svg';
import { ViewStyle } from 'react-native';
interface IconProps {
size?: number;
color?: string;
style?: ViewStyle;
}
export const BackIcon: React.FC<IconProps> = ({ size = 24, color = '#666', style }) => {
return (
<Svg width={size} height={size} viewBox="0 0 24 24" fill="none" style={style}>
<Path
d="M19 12H5M12 19l-7-7 7-7"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
};
export default BackIcon;