34 lines
793 B
TypeScript
34 lines
793 B
TypeScript
import React from 'react';
|
|
import Svg, { Path, Circle } from 'react-native-svg';
|
|
import { ViewStyle } from 'react-native';
|
|
|
|
interface IconProps {
|
|
size?: number;
|
|
color?: string;
|
|
style?: ViewStyle;
|
|
}
|
|
|
|
export const PersonIcon: 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="M20 21v-2a4 4 0 00-4-4H8a4 4 0 00-4 4v2"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<Circle
|
|
cx="12"
|
|
cy="7"
|
|
r="4"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
export default PersonIcon;
|