-
Notifications
You must be signed in to change notification settings - Fork 489
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 #590 from rowyio/rc
v2.2.0
- Loading branch information
Showing
321 changed files
with
9,275 additions
and
4,499 deletions.
There are no files selected for viewing
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,10 @@ | ||
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; | ||
import { mdiResizeBottomRight } from "@mdi/js"; | ||
|
||
export default function ResizeBottomRight(props: SvgIconProps) { | ||
return ( | ||
<SvgIcon {...props}> | ||
<path d={mdiResizeBottomRight} /> | ||
</SvgIcon> | ||
); | ||
} |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; | ||
import { mdiClockEditOutline } from "@mdi/js"; | ||
|
||
export default function UpdatedAt(props: SvgIconProps) { | ||
return ( | ||
<SvgIcon {...props}> | ||
<path d="m19.06 14.88 2.05 2-6 6.07H13v-2.01l6.06-6.06ZM12 2a10 10 0 0 1 9.98 9.373 2.561 2.561 0 0 0-2.001.047A8 8 0 0 0 4 12a8.001 8.001 0 0 0 7 7.938v2.013C5.941 21.447 2 17.164 2 12 2 6.477 6.477 2 12 2Zm9.42 11.35 1.28 1.28c.21.21.21.56 0 .77l-1 .95-2.05-2 1-1a.55.55 0 0 1 .77 0ZM12.5 7v5.25l4.018 2.384-1.051 1.045L11 13V7h1.5Z" /> | ||
<path d={mdiClockEditOutline} /> | ||
</SvgIcon> | ||
); | ||
} |
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,10 @@ | ||
import SvgIcon, { SvgIconProps } from "@mui/material/SvgIcon"; | ||
import { mdiWebhook } from "@mdi/js"; | ||
|
||
export default function Webhook(props: SvgIconProps) { | ||
return ( | ||
<SvgIcon {...props}> | ||
<path d={mdiWebhook} /> | ||
</SvgIcon> | ||
); | ||
} |
Binary file not shown.
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,19 @@ | ||
import { CircularProgress, CircularProgressProps } from "@mui/material"; | ||
|
||
export default function CircularProgressOptical({ | ||
size = 40, | ||
...props | ||
}: CircularProgressProps & { size?: number }) { | ||
const DEFAULT_SIZE = 40; | ||
const DEFAULT_THICKNESS = 3.6; | ||
const linearThickness = (DEFAULT_SIZE / size) * DEFAULT_THICKNESS; | ||
const opticalRatio = 1 - (1 - size / DEFAULT_SIZE) / 2; | ||
|
||
return ( | ||
<CircularProgress | ||
{...props} | ||
size={size} | ||
thickness={linearThickness * opticalRatio} | ||
/> | ||
); | ||
} |
This file was deleted.
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
Oops, something went wrong.