import {View, type ViewStyle} from 'react-native' import {atoms as a, useTheme} from '#/alf' /** * The little blue dot used to nudge a user towards a certain feature. The dot * is absolutely positioned, and is intended to be configured by passing in * positional styles via `top`, `bottom`, `left`, and `right` props. */ export function Dot({ top, bottom, left, right, }: Pick) { const t = useTheme() return ( ) }