-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(meetings): add month sorting | fix #3239
- Loading branch information
1 parent
cba7411
commit ea0a28b
Showing
10 changed files
with
166 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import { SvgIcon, SxProps, Theme } from '@mui/material'; | ||
|
||
type IconProps = { | ||
color?: string; | ||
width?: number; | ||
height?: number; | ||
sx?: SxProps<Theme>; | ||
className?: string; | ||
}; | ||
|
||
const IconSortDown = ({ | ||
color = '#222222', | ||
width = 24, | ||
height = 24, | ||
sx = {}, | ||
className, | ||
}: IconProps) => { | ||
return ( | ||
<SvgIcon | ||
className={`organized-icon-sort-down ${className}`} | ||
sx={{ width: `${width}px`, height: `${height}px`, ...sx }} | ||
> | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M4.78833 6V15.9312L5.8972 14.8189L7 15.9427L4 19L1 15.9427L2.1028 14.8189L3.21167 15.9312V6H4.78833Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M9 16V18H13.3333V16H9ZM9 11V13H17.6667V11H9ZM9 6V8H22V6H9Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default IconSortDown; |
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,43 @@ | ||
import { SvgIcon, SxProps, Theme } from '@mui/material'; | ||
|
||
type IconProps = { | ||
color?: string; | ||
width?: number; | ||
height?: number; | ||
sx?: SxProps<Theme>; | ||
className?: string; | ||
}; | ||
|
||
const IconSortUp = ({ | ||
color = '#222222', | ||
width = 24, | ||
height = 24, | ||
sx = {}, | ||
className, | ||
}: IconProps) => { | ||
return ( | ||
<SvgIcon | ||
className={`organized-icon-sort-up ${className}`} | ||
sx={{ width: `${width}px`, height: `${height}px`, ...sx }} | ||
> | ||
<svg | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
d="M3.21167 18V8.06875L2.1028 9.18113L1 8.05728L4 5L7 8.05728L5.8972 9.18113L4.78833 8.06875V18H3.21167Z" | ||
fill={color} | ||
/> | ||
<path | ||
d="M9 8V6H13.3333V8H9ZM9 13V11H17.6667V13H9ZM9 18V16H22V18H9Z" | ||
fill={color} | ||
/> | ||
</svg> | ||
</SvgIcon> | ||
); | ||
}; | ||
|
||
export default IconSortUp; |
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
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