-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into filedropzone
- Loading branch information
Showing
202 changed files
with
1,712 additions
and
1,269 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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.
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.
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.
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,22 @@ | ||
// WARNING: This file was generated by a script. Do not modify it manually | ||
import { forwardRef } from "react"; | ||
|
||
import { Icon, IconProps } from "../icon"; | ||
|
||
export type DragRowIconProps = IconProps; | ||
|
||
export const DragRowIcon = forwardRef<SVGSVGElement, DragRowIconProps>( | ||
function DragRowIcon(props: DragRowIconProps, ref) { | ||
return ( | ||
<Icon | ||
data-testid="DragRowIcon" | ||
aria-label="drag row" | ||
viewBox="0 0 12 12" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path d="M3 10h6v1H3v-1Zm0-3h6v1H3V7Zm0-3h6v1H3V4Zm0-3h6v1H3V1Z" /> | ||
</Icon> | ||
); | ||
} | ||
); |
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,26 @@ | ||
// WARNING: This file was generated by a script. Do not modify it manually | ||
import { forwardRef } from "react"; | ||
|
||
import { Icon, IconProps } from "../icon"; | ||
|
||
export type JigsawIconProps = IconProps; | ||
|
||
export const JigsawIcon = forwardRef<SVGSVGElement, JigsawIconProps>( | ||
function JigsawIcon(props: JigsawIconProps, ref) { | ||
return ( | ||
<Icon | ||
data-testid="JigsawIcon" | ||
aria-label="jigsaw" | ||
viewBox="0 0 12 12" | ||
ref={ref} | ||
{...props} | ||
> | ||
<path | ||
fillRule="evenodd" | ||
d="M1 6h1.5a.5.5 0 0 1 0 1H1v4h4V9.5a.5.5 0 0 1 1 0V11h4V8h.5a1.5 1.5 0 0 0 0-3H10V2H7v-.5a1.5 1.5 0 1 0-3 0V2H1v4Zm5-4.5a.5.5 0 0 0-1 0V3H2v2h.5a1.5 1.5 0 1 1 0 3H2v2h2v-.5a1.5 1.5 0 1 1 3 0v.5h2V7h1.5a.5.5 0 0 0 0-1H9V3H6V1.5Z" | ||
clipRule="evenodd" | ||
/> | ||
</Icon> | ||
); | ||
} | ||
); |
Oops, something went wrong.