import * as React from 'react'; import { StyleSheet, ColorValue, StyleProp, View, ViewStyle, } from 'react-native'; import { TextInputLabelProp } from '../types'; type OutlineProps = { isV3: boolean; activeColor: string; backgroundColor: ColorValue; hasActiveOutline?: boolean; focused?: boolean; outlineColor?: string; roundness?: number; label?: TextInputLabelProp; style?: StyleProp; }; export const Outline = ({ isV3, label, activeColor, backgroundColor, hasActiveOutline, focused, outlineColor, roundness, style, }: OutlineProps) => ( ); const styles = StyleSheet.create({ outline: { position: 'absolute', left: 0, right: 0, top: 6, bottom: 0, }, noLabelOutline: { top: 0, }, });