@@ -212,9 +212,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedComponen | |||||
<svg | <svg | ||||
aria-label="Pause" | aria-label="Pause" | ||||
viewBox="0 0 24 24" | viewBox="0 0 24 24" | ||||
className="w-6 h-6 fill-none stroke-current stroke-2" | |||||
strokeLinecap="round" | |||||
strokeLinejoin="round" | |||||
className="w-6 h-6 fill-none stroke-current stroke-2 linecap-round linejoin-round" | |||||
> | > | ||||
<rect | <rect | ||||
x="6" | x="6" | ||||
@@ -234,9 +232,7 @@ export const AudioFilePreview = React.forwardRef<AudioFilePreviewDerivedComponen | |||||
<svg | <svg | ||||
aria-label="Play" | aria-label="Play" | ||||
viewBox="0 0 24 24" | viewBox="0 0 24 24" | ||||
className="w-6 h-6 fill-none stroke-current stroke-2" | |||||
strokeLinecap="round" | |||||
strokeLinejoin="round" | |||||
className="w-6 h-6 fill-none stroke-current stroke-2 linecap-round linejoin-round" | |||||
> | > | ||||
<polygon points="5 3 19 12 5 21 5 3" /> | <polygon points="5 3 19 12 5 21 5 3" /> | ||||
</svg> | </svg> | ||||
@@ -128,9 +128,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen | |||||
<svg | <svg | ||||
aria-label="Pause" | aria-label="Pause" | ||||
viewBox="0 0 24 24" | viewBox="0 0 24 24" | ||||
className="w-6 h-6 fill-none stroke-current stroke-2" | |||||
strokeLinecap="round" | |||||
strokeLinejoin="round" | |||||
className="w-6 h-6 fill-none stroke-current stroke-2 linecap-round linejoin-round" | |||||
> | > | ||||
<rect | <rect | ||||
x="6" | x="6" | ||||
@@ -150,9 +148,7 @@ export const VideoFilePreview = React.forwardRef<VideoFilePreviewDerivedComponen | |||||
<svg | <svg | ||||
aria-label="Play" | aria-label="Play" | ||||
viewBox="0 0 24 24" | viewBox="0 0 24 24" | ||||
className="w-6 h-6 fill-none stroke-current stroke-2" | |||||
strokeLinecap="round" | |||||
strokeLinejoin="round" | |||||
className="w-6 h-6 fill-none stroke-current stroke-2 linecap-round linejoin-round" | |||||
> | > | ||||
<polygon points="5 3 19 12 5 21 5 3" /> | <polygon points="5 3 19 12 5 21 5 3" /> | ||||
</svg> | </svg> | ||||
@@ -17,6 +17,14 @@ | |||||
.font-semi-expanded { | .font-semi-expanded { | ||||
font-stretch: semi-expanded; | font-stretch: semi-expanded; | ||||
} | } | ||||
.linejoin-round { | |||||
stroke-linejoin: round; | |||||
} | |||||
.linecap-round { | |||||
stroke-linecap: round; | |||||
} | |||||
} | } | ||||
.slider { | .slider { | ||||