25 lines
632 B
TypeScript
25 lines
632 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 BellIcon: 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="M18 8A6 6 0 006 8c0 7-3 9-3 9h18s-3-2-3-9M13.73 21a2 2 0 01-3.46 0"
|
|
stroke={color}
|
|
strokeWidth="2"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</Svg>
|
|
);
|
|
};
|
|
export default BellIcon;
|