fix: Fixed unknown button variant errors (#107)

This commit is contained in:
Manuel S
2022-03-02 03:30:58 +01:00
committed by GitHub
parent eea6b93db3
commit bcbd1ffceb
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -95,7 +95,7 @@ export function Navigation({ offsetToggleButton = false }) {
</StyledNavigation>
<StyledMobileToggle
variant={show ? "default" : "primary"}
variant={show ? "solid" : "primary"}
isCircle
offsetToggleButton={offsetToggleButton}
onClick={() => setShow(!show)}
+2 -2
View File
@@ -72,13 +72,13 @@ export function VideoPlayer({ anime, theme, entry, video, background, ...props }
<Text as="p">You can try one of the options below to still watch the video:</Text>
<Row wrap style={{ "--gap": "16px" }}>
<IconTextButton
variant="default"
variant="solid"
forwardedAs="a"
href={`vlc-x-callback://x-callback-url/stream?url=${videoUrl}`}
icon={faPlay}
>Play in VLC</IconTextButton>
<IconTextButton
variant="default"
variant="solid"
forwardedAs="a"
href={videoUrl}
download