import { View, StyleSheet } from 'react-native';
import type { AddressLabel } from '../core/types';
interface AddressLabelIconProps {
label: AddressLabel;
color: string;
size?: number;
}
const STROKE = 1.5;
/** Minimal View-drawn icons for Home / Work / Other (no react-native-svg). */
export function AddressLabelIcon({ label, color, size = 16 }: AddressLabelIconProps) {
switch (label) {
case 'home':
return (
);
case 'work':
return (
);
case 'other':
return (
);
}
}
/** Map-pin icon for address / location detail sections (section headers). */
export function AddressDetailsIcon({ color, size = 14 }: { color: string; size?: number }) {
return (
);
}
const styles = StyleSheet.create({
wrap: {
alignItems: 'center',
justifyContent: 'center',
},
});