import { theme } from '@expo/styleguide'; import { CSSProperties } from 'react'; type Props = { alt: string; style?: CSSProperties; containerStyle?: CSSProperties; src: string; }; export default function ImageSpotlight({ alt, src, style, containerStyle }: Props) { return (
{alt}
); }