Skip to content

Commit 104fa55

Browse files
committed
fix:style, add size prop as PlayerItemOptions
1 parent 457b28b commit 104fa55

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/components/Player/PlayerItemOptions.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export const PlayerItemButtons = (props: Props) => {
4747
<PlaySpeed
4848
ariaDescription={t('Playback speed')}
4949
onChange={(newSpeed) => playerSetPlaybackSpeedAndCookies(newSpeed, cookies, setCookie)}
50+
size='small'
5051
playSpeed={playSpeed}
5152
/>
5253
{!isEmbed && (

src/components/Player/options/PlaySpeed.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ type Props = {
1414
children?: any
1515
}
1616

17-
export const PlaySpeed = ({ ariaDescription, ariaLabel, ariaPressed, className, onChange, playSpeed }: Props) => {
18-
const wrapperClass = classnames(className, 'player-option-button')
17+
export const PlaySpeed = ({ ariaDescription, ariaLabel, ariaPressed, className, onChange, playSpeed, size }: Props) => {
18+
const wrapperClass = classnames(className, 'player-option-button', size)
1919

2020
const DropdownOptions = PV.Player.speedOptions
2121

0 commit comments

Comments
 (0)