-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add back and forward buttons for traversing months in the dream calen…
…dar. Also added year limits
- Loading branch information
Showing
4 changed files
with
111 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import * as React from "react" | ||
import {IconProps} from "@/app/(site)/components/icons/icon-utils"; | ||
import clsx from "clsx"; | ||
|
||
const DoubleBackIcon = ({className, fill, width, height}: IconProps) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
xmlSpace="preserve" | ||
width={width ?? 24} | ||
height={height ?? width ?? 24} | ||
viewBox="0 0 512 512" | ||
> | ||
<path | ||
className={clsx("self-center", className)} | ||
fill={clsx(fill ?? "currentColor")} | ||
d="m297.2 478 20.7-21.6L108.7 256 317.9 55.6 297.2 34 65.5 256l231.7 222zM194.1 256 425.8 34l20.7 21.6L237.3 256l209.2 200.4-20.7 21.6-231.7-222z"/> | ||
</svg> | ||
) | ||
export default DoubleBackIcon |
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 * as React from "react" | ||
import {IconProps} from "@/app/(site)/components/icons/icon-utils"; | ||
import clsx from "clsx"; | ||
|
||
const DoubleForwardIcon = ({className, fill, width, height}: IconProps) => ( | ||
<svg | ||
xmlns="http://www.w3.org/2000/svg" | ||
width={width ?? 24} | ||
height={height ?? width ?? 24} | ||
data-name="Layer 1" | ||
viewBox="0 0 512 512" | ||
> | ||
<path | ||
className={clsx("self-center", className)} | ||
fill={clsx(fill ?? "currentColor")} | ||
d="m214.78 478-20.67-21.57L403.27 256 194.11 55.57 214.78 34l231.68 222Zm103.11-222L86.22 34 65.54 55.57 274.7 256 65.54 456.43 86.22 478Z"/> | ||
</svg> | ||
) | ||
export default DoubleForwardIcon |