mirror of
https://github.com/taigrr/wails.git
synced 2026-04-16 19:55:05 -07:00
11 lines
305 B
Plaintext
11 lines
305 B
Plaintext
import ThemedImage from '@theme/ThemedImage';
|
|
|
|
export const Brand = ({children,brand}) => (
|
|
<ThemedImage
|
|
alt="{{brand}} logo"
|
|
sources={{
|
|
light: useBaseUrl('/img/icon-' + brand + '.svg'),
|
|
dark: useBaseUrl('/img/icon-' + brand + '-dark.svg'),
|
|
}}
|
|
/>
|
|
); |