ai/at
1
0

fix ios patch refact

This commit is contained in:
2026-03-12 23:07:45 +09:00
parent 669f529481
commit 00b1b5ce1e
21 changed files with 344 additions and 546 deletions

22
ios/patching/Logotype.tsx Normal file
View File

@@ -0,0 +1,22 @@
import React from 'react'
import {Text} from 'react-native'
import {useTheme, atoms as a} from '#/alf'
export function Logotype({width, fill, style}: any) {
const t = useTheme()
const fontSize = width ? parseInt(width) / 3.5 : 22
return (
<Text style={[
a.font_bold,
{
fontSize,
color: fill || t.palette.primary_500,
letterSpacing: -0.5
},
style
]}>
Aiat
</Text>
)
}