-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: added DateRangePicker * feat: accept string as date value in range calendar picker * chore: review changes * fix: date range picker segment isDisabled/ReadOnly * fix: dateRangePicker min/max invalid * fix: calendar state / range calendar state default values * chore: review updates
- Loading branch information
1 parent
67de3d5
commit 0a1cabd
Showing
10 changed files
with
492 additions
and
118 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,47 @@ | ||
import React from "react"; | ||
|
||
export const DoubleChevronLeft = ({ ...props }) => { | ||
return ( | ||
<svg | ||
{...props} | ||
fill="none" | ||
stroke="currentColor" | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2" | ||
d="M15 19l-7-7 7-7" | ||
></path> | ||
</svg> | ||
); | ||
}; | ||
|
||
export const ChevronLeft = ({ ...props }) => { | ||
return ( | ||
<svg | ||
{...props} | ||
fill="none" | ||
stroke="currentColor" | ||
viewBox="0 0 24 24" | ||
xmlns="http://www.w3.org/2000/svg" | ||
> | ||
<path | ||
strokeLinecap="round" | ||
strokeLinejoin="round" | ||
strokeWidth="2" | ||
d="M11 19l-7-7 7-7m8 14l-7-7 7-7" | ||
></path> | ||
</svg> | ||
); | ||
}; | ||
|
||
export const ChevronRight = () => { | ||
return <ChevronLeft style={{ transform: "rotate(180deg)" }} />; | ||
}; | ||
|
||
export const DoubleChevronRight = () => { | ||
return <DoubleChevronLeft style={{ transform: "rotate(180deg)" }} />; | ||
}; |
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
Oops, something went wrong.