mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
Bump packages
And deprecate react-native-feather
This commit is contained in:
@ -22,10 +22,14 @@ const Selections: React.FC<Props> = ({
|
||||
}) => {
|
||||
const { colors } = useTheme()
|
||||
|
||||
const isSelected = (index: number): string =>
|
||||
const isSelected = (index: number) =>
|
||||
options[index].selected
|
||||
? `Check${multiple ? 'Square' : 'Circle'}`
|
||||
: `${multiple ? 'Square' : 'Circle'}`
|
||||
? multiple
|
||||
? 'check-square'
|
||||
: 'check-circle'
|
||||
: multiple
|
||||
? 'square'
|
||||
: 'circle'
|
||||
|
||||
return (
|
||||
<View>
|
||||
|
Reference in New Issue
Block a user