MCPcopy Create free account
hub / github.com/lesspass/lesspass / Header

Function Header

mobile/src/header/Header.js:7–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

5import LogoLight from "./logo.light.png";
6
7export default function Header() {
8 const theme = useTheme();
9 return (
10 <View
11 style={{
12 paddingVertical: 16,
13 justifyContent: "center",
14 alignItems: "center",
15 }}
16 >
17 <Image
18 resizeMode="cover"
19 style={{
20 width: 180,
21 height: 39,
22 resizeMode: "contain",
23 }}
24 source={theme.dark ? LogoLight : LogoDark}
25 />
26 </View>
27 );
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected