mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-21 08:17:10 +08:00
19 lines
647 B
TypeScript
19 lines
647 B
TypeScript
|
|
// eslint-disable-next-line no-restricted-imports
|
|
import { SvgIcon, SvgIconProps } from '@mui/material';
|
|
|
|
export interface BacklinksIconProps extends Omit<SvgIconProps, 'color'> {
|
|
color?: string
|
|
}
|
|
|
|
export const BacklinksIcon = ({ color, style, ...props}: BacklinksIconProps) => {
|
|
const propsStyles = {"color": color};
|
|
const customStyles = {};
|
|
const styles = {...propsStyles, ...customStyles, ...style}
|
|
return (
|
|
<SvgIcon style={styles} {...props}>
|
|
<path fillRule="evenodd" d="M3.2 3.2H10v1.6H4.8v14.4H10v1.6H3.2V3.2ZM14.2 3.2H21v1.6h-5.2v14.4H21v1.6h-6.8V3.2Z" clipRule="evenodd" />
|
|
</SvgIcon>
|
|
)
|
|
};
|