@rovula/ui 0.0.33 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/bundle.js +2 -2
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dialog/Dialog.d.ts +4 -1
- package/dist/cjs/types/icons/material-icon/outline/AlignVerticalBottom.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/AlignVerticalTop.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/VerticalDistribute.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/outline/index.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/AlignVerticalBottom.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/AlignVerticalTop.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/VerticalDistribute.d.ts +3 -0
- package/dist/cjs/types/icons/material-icon/solid/index.d.ts +3 -0
- package/dist/components/Dialog/Dialog.js +2 -2
- package/dist/components/Icon/Icon.stories.js +3 -0
- package/dist/esm/bundle.js +2 -2
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dialog/Dialog.d.ts +4 -1
- package/dist/esm/types/icons/material-icon/outline/AlignVerticalBottom.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/AlignVerticalTop.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/VerticalDistribute.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/outline/index.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/AlignVerticalBottom.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/AlignVerticalTop.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/VerticalDistribute.d.ts +3 -0
- package/dist/esm/types/icons/material-icon/solid/index.d.ts +3 -0
- package/dist/icons/material-icon/outline/AlignVerticalBottom.js +3 -0
- package/dist/icons/material-icon/outline/AlignVerticalTop.js +3 -0
- package/dist/icons/material-icon/outline/VerticalDistribute.js +3 -0
- package/dist/icons/material-icon/outline/index.js +3 -0
- package/dist/icons/material-icon/solid/AlignVerticalBottom.js +3 -0
- package/dist/icons/material-icon/solid/AlignVerticalTop.js +3 -0
- package/dist/icons/material-icon/solid/VerticalDistribute.js +3 -0
- package/dist/icons/material-icon/solid/index.js +3 -0
- package/dist/index.d.ts +4 -1
- package/package.json +3 -2
- package/src/components/Dialog/Dialog.tsx +41 -20
- package/src/components/Icon/Icon.stories.tsx +3 -0
- package/src/icons/material-icon/outline/AlignVerticalBottom.tsx +19 -0
- package/src/icons/material-icon/outline/AlignVerticalTop.tsx +20 -0
- package/src/icons/material-icon/outline/VerticalDistribute.tsx +19 -0
- package/src/icons/material-icon/outline/index.ts +3 -0
- package/src/icons/material-icon/solid/AlignVerticalBottom.tsx +19 -0
- package/src/icons/material-icon/solid/AlignVerticalTop.tsx +20 -0
- package/src/icons/material-icon/solid/VerticalDistribute.tsx +19 -0
- package/src/icons/material-icon/solid/index.ts +3 -0
|
@@ -5,7 +5,10 @@ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.Dia
|
|
|
5
5
|
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
6
6
|
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
7
7
|
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
8
|
-
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> &
|
|
8
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
9
|
+
showCloseButton?: boolean | undefined;
|
|
10
|
+
closeButtonClassName?: string | undefined;
|
|
11
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
9
12
|
declare const DialogHeader: {
|
|
10
13
|
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
11
14
|
displayName: string;
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const AlignVerticalBottom = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M4.436 19.995a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.338.186-.462a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.627.627 0 0 1 .186.462.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Zm4.63-3.275c-.3 0-.556-.106-.769-.32a1.048 1.048 0 0 1-.32-.768V5.084c0-.3.107-.555.32-.769.213-.213.47-.32.769-.32.3 0 .556.107.769.32.213.214.32.47.32.769v10.548c0 .299-.107.555-.32.768-.213.214-.47.32-.769.32Zm5.868 0c-.3 0-.555-.106-.769-.32a1.049 1.049 0 0 1-.32-.768V10.27c0-.3.107-.556.32-.77.214-.213.47-.32.77-.32.298 0 .555.107.768.32.213.214.32.47.32.77v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Z" }) })));
|
|
3
|
+
export default AlignVerticalBottom;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const AlignVerticalTop = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M9.066 19.995c-.3 0-.556-.106-.769-.32a1.049 1.049 0 0 1-.32-.769V8.36c0-.3.107-.556.32-.77.213-.212.47-.319.769-.319.3 0 .556.107.769.32.213.213.32.47.32.769v10.547c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Zm5.868-5.186c-.3 0-.555-.107-.769-.32a1.049 1.049 0 0 1-.32-.77V8.36c0-.3.107-.556.32-.77.214-.212.47-.319.77-.319.298 0 .555.107.768.32.213.213.32.47.32.769v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32ZM4.436 5.292a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.339.186-.463a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.628.628 0 0 1 .186.463.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Z" }) })));
|
|
3
|
+
export default AlignVerticalTop;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const VerticalDistribute = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M4.632 20a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45a.61.61 0 0 1 .45-.181h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Zm4.42-6.947c-.292 0-.54-.103-.745-.307A1.014 1.014 0 0 1 8 12c0-.292.102-.54.307-.746.205-.205.453-.308.746-.308h5.894c.293 0 .541.103.746.307.205.205.307.453.307.745s-.102.54-.307.746a1.014 1.014 0 0 1-.746.308H9.053Zm-4.42-7.79a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45A.611.611 0 0 1 4.632 4h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Z" }) })));
|
|
3
|
+
export default VerticalDistribute;
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const AlignVerticalBottom = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M4.436 19.995a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.338.186-.462a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.627.627 0 0 1 .186.462.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Zm4.63-3.275c-.3 0-.556-.106-.769-.32a1.048 1.048 0 0 1-.32-.768V5.084c0-.3.107-.555.32-.769.213-.213.47-.32.769-.32.3 0 .556.107.769.32.213.214.32.47.32.769v10.548c0 .299-.107.555-.32.768-.213.214-.47.32-.769.32Zm5.868 0c-.3 0-.555-.106-.769-.32a1.049 1.049 0 0 1-.32-.768V10.27c0-.3.107-.556.32-.77.214-.213.47-.32.77-.32.298 0 .555.107.768.32.213.214.32.47.32.77v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Z" }) })));
|
|
3
|
+
export default AlignVerticalBottom;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const AlignVerticalTop = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M9.066 19.995c-.3 0-.556-.106-.769-.32a1.049 1.049 0 0 1-.32-.769V8.36c0-.3.107-.556.32-.77.213-.212.47-.319.769-.319.3 0 .556.107.769.32.213.213.32.47.32.769v10.547c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Zm5.868-5.186c-.3 0-.555-.107-.769-.32a1.049 1.049 0 0 1-.32-.77V8.36c0-.3.107-.556.32-.77.214-.212.47-.319.77-.319.298 0 .555.107.768.32.213.213.32.47.32.769v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32ZM4.436 5.292a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.339.186-.463a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.628.628 0 0 1 .186.463.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Z" }) })));
|
|
3
|
+
export default AlignVerticalTop;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
2
|
+
const VerticalDistribute = (props) => (_jsx("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, viewBox: "0 0 24 24", fill: "none" }, props, { children: _jsx("path", { fill: "#5F6368", d: "M4.632 20a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45a.61.61 0 0 1 .45-.181h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Zm4.42-6.947c-.292 0-.54-.103-.745-.307A1.014 1.014 0 0 1 8 12c0-.292.102-.54.307-.746.205-.205.453-.308.746-.308h5.894c.293 0 .541.103.746.307.205.205.307.453.307.745s-.102.54-.307.746a1.014 1.014 0 0 1-.746.308H9.053Zm-4.42-7.79a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45A.611.611 0 0 1 4.632 4h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Z" }) })));
|
|
3
|
+
export default VerticalDistribute;
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|
package/dist/index.d.ts
CHANGED
|
@@ -370,7 +370,10 @@ declare const DialogTrigger: React.ForwardRefExoticComponent<DialogPrimitive.Dia
|
|
|
370
370
|
declare const DialogPortal: React.FC<DialogPrimitive.DialogPortalProps>;
|
|
371
371
|
declare const DialogClose: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
372
372
|
declare const DialogOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
373
|
-
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> &
|
|
373
|
+
declare const DialogContent: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
374
|
+
showCloseButton?: boolean | undefined;
|
|
375
|
+
closeButtonClassName?: string | undefined;
|
|
376
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
|
374
377
|
declare const DialogHeader: {
|
|
375
378
|
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
376
379
|
displayName: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rovula/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
4
4
|
"main": "dist/cjs/bundle.js",
|
|
5
5
|
"module": "dist/esm/bundle.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
"storybook:serve-css": "npx tailwindcss -i ./src/theme/global.css -o ./dist/src/theme/global.css",
|
|
17
17
|
"storybook": "storybook dev -p 6006",
|
|
18
18
|
"build-storybook": "storybook build",
|
|
19
|
-
"chromatic": "npx chromatic --project-token=chpt_cee098dd3b9b3ee"
|
|
19
|
+
"chromatic": "npx chromatic --project-token=chpt_cee098dd3b9b3ee",
|
|
20
|
+
"deploy-storybook": "npx wrangler pages deploy storybook-static --project-name=rovula-ui --branch=main"
|
|
20
21
|
},
|
|
21
22
|
"files": [
|
|
22
23
|
"dist/**/*",
|
|
@@ -31,26 +31,47 @@ DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
|
31
31
|
|
|
32
32
|
const DialogContent = React.forwardRef<
|
|
33
33
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
|
34
|
-
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
34
|
+
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & {
|
|
35
|
+
showCloseButton?: boolean;
|
|
36
|
+
closeButtonClassName?: string;
|
|
37
|
+
}
|
|
38
|
+
>(
|
|
39
|
+
(
|
|
40
|
+
{
|
|
41
|
+
className,
|
|
42
|
+
children,
|
|
43
|
+
showCloseButton = false,
|
|
44
|
+
closeButtonClassName,
|
|
45
|
+
...props
|
|
46
|
+
},
|
|
47
|
+
ref
|
|
48
|
+
) => (
|
|
49
|
+
<DialogPortal>
|
|
50
|
+
<DialogOverlay />
|
|
51
|
+
<DialogPrimitive.Content
|
|
52
|
+
ref={ref}
|
|
53
|
+
className={cn(
|
|
54
|
+
"fixed text-base-popup-foreground left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border border-base-popup bg-base-popup p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-md",
|
|
55
|
+
className
|
|
56
|
+
)}
|
|
57
|
+
{...props}
|
|
58
|
+
>
|
|
59
|
+
{children}
|
|
60
|
+
{showCloseButton && (
|
|
61
|
+
<DialogPrimitive.Close
|
|
62
|
+
className={cn(
|
|
63
|
+
"absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-primary data-[state=open]:text-primary-foreground",
|
|
64
|
+
closeButtonClassName
|
|
65
|
+
)}
|
|
66
|
+
>
|
|
67
|
+
<XMarkIcon className="h-4 w-4" />
|
|
68
|
+
<span className="sr-only">Close</span>
|
|
69
|
+
</DialogPrimitive.Close>
|
|
70
|
+
)}
|
|
71
|
+
</DialogPrimitive.Content>
|
|
72
|
+
</DialogPortal>
|
|
73
|
+
)
|
|
74
|
+
);
|
|
54
75
|
DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
55
76
|
|
|
56
77
|
const DialogHeader = ({
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const AlignVerticalBottom = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
fill="#5F6368"
|
|
14
|
+
d="M4.436 19.995a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.338.186-.462a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.627.627 0 0 1 .186.462.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Zm4.63-3.275c-.3 0-.556-.106-.769-.32a1.048 1.048 0 0 1-.32-.768V5.084c0-.3.107-.555.32-.769.213-.213.47-.32.769-.32.3 0 .556.107.769.32.213.214.32.47.32.769v10.548c0 .299-.107.555-.32.768-.213.214-.47.32-.769.32Zm5.868 0c-.3 0-.555-.106-.769-.32a1.049 1.049 0 0 1-.32-.768V10.27c0-.3.107-.556.32-.77.214-.213.47-.32.77-.32.298 0 .555.107.768.32.213.214.32.47.32.77v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
export default AlignVerticalBottom;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const AlignVerticalTop = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="#5F6368"
|
|
15
|
+
d="M9.066 19.995c-.3 0-.556-.106-.769-.32a1.049 1.049 0 0 1-.32-.769V8.36c0-.3.107-.556.32-.77.213-.212.47-.319.769-.319.3 0 .556.107.769.32.213.213.32.47.32.769v10.547c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Zm5.868-5.186c-.3 0-.555-.107-.769-.32a1.049 1.049 0 0 1-.32-.77V8.36c0-.3.107-.556.32-.77.214-.212.47-.319.77-.319.298 0 .555.107.768.32.213.213.32.47.32.769v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32ZM4.436 5.292a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.339.186-.463a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.628.628 0 0 1 .186.463.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
export default AlignVerticalTop;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const VerticalDistribute = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="#5F6368"
|
|
15
|
+
d="M4.632 20a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45a.61.61 0 0 1 .45-.181h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Zm4.42-6.947c-.292 0-.54-.103-.745-.307A1.014 1.014 0 0 1 8 12c0-.292.102-.54.307-.746.205-.205.453-.308.746-.308h5.894c.293 0 .541.103.746.307.205.205.307.453.307.745s-.102.54-.307.746a1.014 1.014 0 0 1-.746.308H9.053Zm-4.42-7.79a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45A.611.611 0 0 1 4.632 4h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
export default VerticalDistribute;
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const AlignVerticalBottom = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
fill="none"
|
|
10
|
+
{...props}
|
|
11
|
+
>
|
|
12
|
+
<path
|
|
13
|
+
fill="#5F6368"
|
|
14
|
+
d="M4.436 19.995a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.338.186-.462a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.627.627 0 0 1 .186.462.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Zm4.63-3.275c-.3 0-.556-.106-.769-.32a1.048 1.048 0 0 1-.32-.768V5.084c0-.3.107-.555.32-.769.213-.213.47-.32.769-.32.3 0 .556.107.769.32.213.214.32.47.32.769v10.548c0 .299-.107.555-.32.768-.213.214-.47.32-.769.32Zm5.868 0c-.3 0-.555-.106-.769-.32a1.049 1.049 0 0 1-.32-.768V10.27c0-.3.107-.556.32-.77.214-.213.47-.32.77-.32.298 0 .555.107.768.32.213.214.32.47.32.77v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Z"
|
|
15
|
+
/>
|
|
16
|
+
</svg>
|
|
17
|
+
);
|
|
18
|
+
|
|
19
|
+
export default AlignVerticalBottom;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const AlignVerticalTop = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="#5F6368"
|
|
15
|
+
d="M9.066 19.995c-.3 0-.556-.106-.769-.32a1.049 1.049 0 0 1-.32-.769V8.36c0-.3.107-.556.32-.77.213-.212.47-.319.769-.319.3 0 .556.107.769.32.213.213.32.47.32.769v10.547c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32Zm5.868-5.186c-.3 0-.555-.107-.769-.32a1.049 1.049 0 0 1-.32-.77V8.36c0-.3.107-.556.32-.77.214-.212.47-.319.77-.319.298 0 .555.107.768.32.213.213.32.47.32.769v5.36c0 .3-.107.556-.32.77-.213.213-.47.32-.769.32ZM4.436 5.292a.627.627 0 0 1-.462-.186.627.627 0 0 1-.186-.462c0-.184.062-.339.186-.463a.627.627 0 0 1 .462-.186h15.128c.184 0 .338.062.462.186a.628.628 0 0 1 .186.463.627.627 0 0 1-.186.462.627.627 0 0 1-.462.186H4.436Z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
export default AlignVerticalTop;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import { SVGProps } from "react";
|
|
3
|
+
|
|
4
|
+
const VerticalDistribute = (props: SVGProps<SVGSVGElement>) => (
|
|
5
|
+
<svg
|
|
6
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
7
|
+
width={24}
|
|
8
|
+
height={24}
|
|
9
|
+
viewBox="0 0 24 24"
|
|
10
|
+
fill="none"
|
|
11
|
+
{...props}
|
|
12
|
+
>
|
|
13
|
+
<path
|
|
14
|
+
fill="#5F6368"
|
|
15
|
+
d="M4.632 20a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45a.61.61 0 0 1 .45-.181h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Zm4.42-6.947c-.292 0-.54-.103-.745-.307A1.014 1.014 0 0 1 8 12c0-.292.102-.54.307-.746.205-.205.453-.308.746-.308h5.894c.293 0 .541.103.746.307.205.205.307.453.307.745s-.102.54-.307.746a1.014 1.014 0 0 1-.746.308H9.053Zm-4.42-7.79a.61.61 0 0 1-.45-.182.611.611 0 0 1-.182-.45c0-.179.06-.329.182-.45A.611.611 0 0 1 4.632 4h14.736a.61.61 0 0 1 .45.182.611.611 0 0 1 .182.45c0 .179-.06.329-.182.45a.61.61 0 0 1-.45.181H4.632Z"
|
|
16
|
+
/>
|
|
17
|
+
</svg>
|
|
18
|
+
);
|
|
19
|
+
export default VerticalDistribute;
|
|
@@ -20,3 +20,6 @@ export { default as FormatAlignJustifyIcon } from "./FormatAlignJustifyIcon";
|
|
|
20
20
|
export { default as FormatListBulletedIcon } from "./FormatListBulletedIcon";
|
|
21
21
|
export { default as FormatListNumberedIcon } from "./FormatListNumberedIcon";
|
|
22
22
|
export { default as AllOutIcon } from "./AllOutIcon";
|
|
23
|
+
export { default as AlignVerticalTop } from "./AlignVerticalTop";
|
|
24
|
+
export { default as VerticalDistribute } from "./VerticalDistribute";
|
|
25
|
+
export { default as AlignVerticalBottom } from "./AlignVerticalBottom";
|