blob: ec7a7356ad0da4c2e7779d656e3d2a7da8f69762 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import {View} from 'react-native'
import {atoms as a, useTheme, type ViewStyleProp} from '#/alf'
export function Divider({style}: ViewStyleProp) {
const t = useTheme()
return (
<View style={[a.w_full, a.border_t, t.atoms.border_contrast_low, style]} />
)
}
|