mirror of
https://github.com/AnimeThemes/animethemes-web.git
synced 2026-07-11 01:24:31 +02:00
fix: Fixed unknown button variant errors (#107)
This commit is contained in:
@@ -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)}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user