import * as React from 'react';
import { Animated, StyleSheet } from 'react-native';
import AnimatedText from '../../Typography/AnimatedText';
import type { LabelBackgroundProps } from '../types';
const LabelBackground = ({
labeled,
labelLayoutWidth,
labelLayoutHeight,
placeholderStyle,
baseLabelTranslateX,
topPosition,
backgroundColor,
roundness,
labelStyle,
maxFontSizeMultiplier,
testID,
}: LabelBackgroundProps) => {
const opacity = labeled.interpolate({
inputRange: [0, 0.6],
outputRange: [1, 0],
});
const labelTranslationX = {
translateX: labeled.interpolate({
inputRange: [0, 1],
outputRange: [-baseLabelTranslateX, 0],
}),
};
const labelTextScaleY = {
scaleY: labeled.interpolate({
inputRange: [0, 1],
outputRange: [0.2, 1],
}),
};
const labelTextTransform = [...labelStyle.transform, labelTextScaleY];
const isRounded = roundness > 6;
const roundedEdgeCover = isRounded ? (
) : null;
return [
roundedEdgeCover,
,
];
};
export default LabelBackground;
const styles = StyleSheet.create({
view: {
position: 'absolute',
top: 6,
left: 10,
width: 12,
},
// eslint-disable-next-line react-native/no-color-literals
outlinedLabel: {
position: 'absolute',
left: 8,
paddingHorizontal: 0,
color: 'transparent',
},
});