import React from 'react' import {atoms as a, useTheme, ViewStyleProp} from '#/alf' import {Fill} from '#/components/Fill' /** * Applies and thin border within a bounding box. Used to contrast media from * bg of the container. */ export function MediaInsetBorder({ children, style, opaque, }: { children?: React.ReactNode /** * Used where this border needs to match adjacent borders, such as in * external link previews */ opaque?: boolean } & ViewStyleProp) { const t = useTheme() const isLight = t.name === 'light' return ( {children} ) }