-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #733 from Vayras/FullScreen
fix(#726): enable fullscreen for videos
- Loading branch information
Showing
6 changed files
with
173 additions
and
10 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* eslint-disable */ | ||
import React from 'react'; | ||
|
||
const ExitFullScreen: React.FC<React.SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
viewBox="0 0 32 32" | ||
fill="currentColor" | ||
> | ||
<mask | ||
id="mask0_4160_9271" | ||
maskUnits="userSpaceOnUse" | ||
x="0" | ||
y="0" | ||
width="32" | ||
height="32" | ||
> | ||
<rect width="1em" height="1em" fill="currentColor" /> | ||
</mask> | ||
<g mask="url(#mask0_4160_9271)"> | ||
<path | ||
d="M11 25V21H7V19H13V25H11ZM19 25V19H25V21H21V25H19ZM7 13V11H11V7H13V13H7ZM19 13V7H21V11H25V13H19Z" | ||
fill="currentColor" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
|
||
export default ExitFullScreen; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* eslint-disable */ | ||
import React from 'react'; | ||
|
||
const FullScreenIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="1em" | ||
height="1em" | ||
viewBox="0 0 22 22" | ||
fill="currentColor" | ||
> | ||
<mask | ||
id="mask0_3130_18463" | ||
maskUnits="userSpaceOnUse" | ||
x="0" | ||
y="0" | ||
width="22" | ||
height="22" | ||
> | ||
<rect width="1em" height="1em" fill="currentColor" /> | ||
</mask> | ||
<g mask="url(#mask0_3130_18463)"> | ||
<path | ||
d="M4.58301 17.4166V12.8333H5.95798V16.0416H9.16634V17.4166H4.58301ZM4.58301 9.16658V4.58325H9.16634V5.95823H5.95798V9.16658H4.58301ZM12.833 17.4166V16.0416H16.0414V12.8333H17.4163V17.4166H12.833ZM16.0414 9.16658V5.95823H12.833V4.58325H17.4163V9.16658H16.0414Z" | ||
fill="currentColor" | ||
/> | ||
</g> | ||
</svg> | ||
); | ||
|
||
export default FullScreenIcon; |