// HeroIcons shield-check — Replacement für Ionicons "shield-checkmark" // (User-Entscheidung 2026-05-05: HeroIcons-Stil gefällt besser für Domain- // Approved-Indikator). Inline-SVG via react-native-svg, kein Extra-Package. // // Quelle: heroicons.com/solid → shield-check (Apache 2.0) import Svg, { Path } from 'react-native-svg'; type Props = { size?: number; color?: string; }; export function HeroShieldCheck({ size = 18, color = '#22c55e' }: Props) { return ( ); }