-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Format typed data for sign messsage policy
- Loading branch information
1 parent
7ec900d
commit 7c33f6f
Showing
5 changed files
with
118 additions
and
6 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
23 changes: 23 additions & 0 deletions
23
packages/ui-next/src/components/icons/utility/arrow-turn-down.tsx
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,23 @@ | ||
import { forwardRef, memo } from "react"; | ||
import { iconVariants } from "../utils"; | ||
import { IconProps } from "../types"; | ||
|
||
export const ArrowTurnDownIcon = memo( | ||
forwardRef<SVGSVGElement, IconProps>( | ||
({ className, size, ...props }, forwardedRef) => ( | ||
<svg | ||
viewBox="0 0 24 24" | ||
className={iconVariants({ size, className })} | ||
ref={forwardedRef} | ||
{...props} | ||
> | ||
<path | ||
d="M5.92826 6.70261V6H4.52304V6.70261V13.4945V14.1971H5.22565H16.7865L14.4738 16.5099L13.9761 17.0076L14.9685 18L15.4662 17.5023L18.9792 13.9893L19.4769 13.4916L18.9792 12.9939L15.4662 9.48085L14.9685 8.98317L13.9761 9.98146L14.4738 10.4791L16.7865 12.7919H5.92826V6.70261Z" | ||
fill="currentColor" | ||
/> | ||
</svg> | ||
), | ||
), | ||
); | ||
|
||
ArrowTurnDownIcon.displayName = "ArrowTurnDownIcon"; |
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