fix add align icon

This commit is contained in:
DiamondThree
2022-08-17 20:59:20 +08:00
parent 251ea4f84e
commit 46727d367c
32 changed files with 307 additions and 8 deletions
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" d="M18.566 9.434 12 2.87 5.434 9.434l1.132 1.132L11.2 5.93V21h1.6V5.931l4.634 4.635 1.132-1.132Z" clip-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 211 B

@@ -0,0 +1,18 @@
// eslint-disable-next-line no-restricted-imports
import { SvgIcon, SvgIconProps } from '@mui/material';
export interface BringForwardIconProps extends Omit<SvgIconProps, 'color'> {
color?: string
}
export const BringForwardIcon = ({ color, style, ...props}: BringForwardIconProps) => {
const propsStyles = {"color": color};
const customStyles = {};
const styles = {...propsStyles, ...customStyles, ...style}
return (
<SvgIcon style={styles} {...props}>
<path fillRule="evenodd" d="M18.566 9.434 12 2.87 5.434 9.434l1.132 1.132L11.2 5.93V21h1.6V5.931l4.634 4.635 1.132-1.132Z" clipRule="evenodd" />
</SvgIcon>
)
};