ai/at
1
0
Files
at/ios/patching/Logotype.tsx
2026-03-12 23:07:45 +09:00

23 lines
443 B
TypeScript

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>
)
}