feat remove stretch add add distribute (#284)

* feat remove stretch add add distribute

* fix rename icon

* fix:lint
This commit is contained in:
DiamondThree
2022-08-18 12:06:11 +08:00
committed by GitHub
parent 990a59b444
commit 5d32d656d5
28 changed files with 120 additions and 122 deletions
+13 -13
View File
@@ -1,4 +1,4 @@
export const timestamp = 1660740866491;
export const timestamp = 1660793621971;
export * from './image/image';
export * from './format-clear/format-clear';
export * from './backward-undo/backward-undo';
@@ -26,10 +26,10 @@ export * from './format-italic/format-italic';
export * from './format-strikethrough/format-strikethrough';
export * from './format-color-text/format-color-text';
export * from './format-background/format-background';
export * from './align-left/align-left';
export * from './align-center/align-center';
export * from './align-right/align-right';
export * from './align-justify/align-justify';
export * from './text-align-left/text-align-left';
export * from './text-align-center/text-align-center';
export * from './text-align-right/text-align-right';
export * from './text-align-justify/text-align-justify';
export * from './arrow-drop-down/arrow-drop-down';
export * from './arrow-right/arrow-right';
export * from './more/more';
@@ -130,14 +130,14 @@ export * from './more-tags-an-subblocks/more-tags-an-subblocks';
export * from './page-in-page-tree/page-in-page-tree';
export * from './pin/pin';
export * from './add/add';
export * from './align-to-left/align-to-left';
export * from './align-to-right/align-to-right';
export * from './distribute-horizontal/distribute-horizontal';
export * from './distribute-vertical/distribute-vertical';
export * from './align-to-top/align-to-top';
export * from './align-to-bottom/align-to-bottom';
export * from './align-horizontal-center/align-horizontal-center';
export * from './align-vertical-center/align-vertical-center';
export * from './shapes-align-left/shapes-align-left';
export * from './shapes-align-right/shapes-align-right';
export * from './shapes-distribute-horizontal/shapes-distribute-horizontal';
export * from './shapes-distribute-vertical/shapes-distribute-vertical';
export * from './shapes-align-top/shapes-align-top';
export * from './shapes-align-bottom/shapes-align-bottom';
export * from './shapes-align-horizontal-center/shapes-align-horizontal-center';
export * from './shapes-align-vertical-center/shapes-align-vertical-center';
export * from './bring-forward/bring-forward';
export * from './send-backward/send-backward';
export * from './bring-to-front/bring-to-front';
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignToBottomIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignBottomIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignToBottomIcon = ({ color, style, ...props}: AlignToBottomIconProps) => {
export const ShapesAlignBottomIcon = ({ color, style, ...props}: ShapesAlignBottomIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignHorizontalCenterIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignHorizontalCenterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignHorizontalCenterIcon = ({ color, style, ...props}: AlignHorizontalCenterIconProps) => {
export const ShapesAlignHorizontalCenterIcon = ({ color, style, ...props}: ShapesAlignHorizontalCenterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 184 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignToLeftIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignLeftIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignToLeftIcon = ({ color, style, ...props}: AlignToLeftIconProps) => {
export const ShapesAlignLeftIcon = ({ color, style, ...props}: ShapesAlignLeftIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignToRightIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignRightIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignToRightIcon = ({ color, style, ...props}: AlignToRightIconProps) => {
export const ShapesAlignRightIcon = ({ color, style, ...props}: ShapesAlignRightIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 245 B

After

Width:  |  Height:  |  Size: 245 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignToTopIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignTopIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignToTopIcon = ({ color, style, ...props}: AlignToTopIconProps) => {
export const ShapesAlignTopIcon = ({ color, style, ...props}: ShapesAlignTopIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignVerticalCenterIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesAlignVerticalCenterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignVerticalCenterIcon = ({ color, style, ...props}: AlignVerticalCenterIconProps) => {
export const ShapesAlignVerticalCenterIcon = ({ color, style, ...props}: ShapesAlignVerticalCenterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DistributeHorizontalIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesDistributeHorizontalIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DistributeHorizontalIcon = ({ color, style, ...props}: DistributeHorizontalIconProps) => {
export const ShapesDistributeHorizontalIcon = ({ color, style, ...props}: ShapesDistributeHorizontalIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface DistributeVerticalIconProps extends Omit<SvgIconProps, 'color'> {
export interface ShapesDistributeVerticalIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const DistributeVerticalIcon = ({ color, style, ...props}: DistributeVerticalIconProps) => {
export const ShapesDistributeVerticalIcon = ({ color, style, ...props}: ShapesDistributeVerticalIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 190 B

After

Width:  |  Height:  |  Size: 190 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignCenterIconProps extends Omit<SvgIconProps, 'color'> {
export interface TextAlignCenterIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignCenterIcon = ({ color, style, ...props}: AlignCenterIconProps) => {
export const TextAlignCenterIcon = ({ color, style, ...props}: TextAlignCenterIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 190 B

After

Width:  |  Height:  |  Size: 190 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignJustifyIconProps extends Omit<SvgIconProps, 'color'> {
export interface TextAlignJustifyIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignJustifyIcon = ({ color, style, ...props}: AlignJustifyIconProps) => {
export const TextAlignJustifyIcon = ({ color, style, ...props}: TextAlignJustifyIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 190 B

After

Width:  |  Height:  |  Size: 190 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignLeftIconProps extends Omit<SvgIconProps, 'color'> {
export interface TextAlignLeftIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignLeftIcon = ({ color, style, ...props}: AlignLeftIconProps) => {
export const TextAlignLeftIcon = ({ color, style, ...props}: TextAlignLeftIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}

Before

Width:  |  Height:  |  Size: 190 B

After

Width:  |  Height:  |  Size: 190 B

@@ -2,11 +2,11 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface AlignRightIconProps extends Omit<SvgIconProps, 'color'> {
export interface TextAlignRightIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const AlignRightIcon = ({ color, style, ...props}: AlignRightIconProps) => {
export const TextAlignRightIcon = ({ color, style, ...props}: TextAlignRightIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}