clean up styling artifacts

This commit is contained in:
vineyardbovines
2026-04-14 08:44:04 -04:00
parent 4542a09ab7
commit 159337f446
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -268,7 +268,7 @@ export function Inner({children, style, header}: DialogInnerProps) {
export const ScrollableInner = forwardRef<ScrollView, DialogInnerProps>( export const ScrollableInner = forwardRef<ScrollView, DialogInnerProps>(
function ScrollableInner( function ScrollableInner(
{children, contentContainerStyle, header, ...props}, {children, contentContainerStyle, header, style: _style, ...props},
ref, ref,
) { ) {
const {nativeSnapPoint, disableDrag, setDisableDrag, type} = const {nativeSnapPoint, disableDrag, setDisableDrag, type} =
+1 -1
View File
@@ -100,7 +100,7 @@ export function Icon({
} }
return ( return (
<View style={[a.pb_sm]}> <View style={[a.pb_sm, a.align_center]}>
<Comp size="xl" style={{color: iconColor}} /> <Comp size="xl" style={{color: iconColor}} />
</View> </View>
) )