31 lines
838 B
TypeScript
31 lines
838 B
TypeScript
import {View} from 'react-native'
|
|
import {msg} from '@lingui/core/macro'
|
|
import {useLingui} from '@lingui/react'
|
|
|
|
import {atoms as a, useTheme, type ViewStyleProp} from '#/alf'
|
|
import {Button, ButtonIcon} from '#/components/Button'
|
|
import {TimesLarge_Stroke2_Corner0_Rounded as X} from '#/components/icons/Times'
|
|
|
|
export function ExternalEmbedRemoveBtn({
|
|
onRemove,
|
|
style,
|
|
}: {onRemove: () => void} & ViewStyleProp) {
|
|
const t = useTheme()
|
|
const {_} = useLingui()
|
|
|
|
return (
|
|
<View style={[a.absolute, {top: 8, right: 8}, a.z_50, style]}>
|
|
<Button
|
|
label={_(msg`Remove attachment`)}
|
|
onPress={onRemove}
|
|
size="small"
|
|
variant="solid"
|
|
color="secondary"
|
|
shape="round"
|
|
style={[t.atoms.shadow_sm]}>
|
|
<ButtonIcon icon={X} size="sm" />
|
|
</Button>
|
|
</View>
|
|
)
|
|
}
|