-
Notifications
You must be signed in to change notification settings - Fork 7
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 #479 from lyytioy/next
Version 2.2.0
- Loading branch information
Showing
8 changed files
with
1,956 additions
and
984 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,13 @@ | ||
import { createElement } from 'react'; | ||
import SvgIcon from '@mui/material/SvgIcon'; | ||
const ClockContained = (props: any) => | ||
createElement( | ||
SvgIcon, | ||
props, | ||
<path | ||
fill="currentColor" | ||
d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" | ||
/>, | ||
<path stroke="#fff" strokeLinecap="round" strokeWidth={2} d="M12 8.25V13l5.25 4.25" /> | ||
); | ||
export default ClockContained; |
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,16 @@ | ||
import { createElement } from 'react'; | ||
import SvgIcon from '@mui/material/SvgIcon'; | ||
const PlayContained = (props: any) => | ||
createElement( | ||
SvgIcon, | ||
props, | ||
<path | ||
fill="currentColor" | ||
d="M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z" | ||
/>, | ||
<path | ||
fill="#fff" | ||
d="M17.25 11.567a.5.5 0 0 1 0 .866l-7.5 4.33A.5.5 0 0 1 9 16.33V7.67a.5.5 0 0 1 .75-.433l7.5 4.33Z" | ||
/> | ||
); | ||
export default PlayContained; |
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