19 lines
702 B
TypeScript
19 lines
702 B
TypeScript
|
|
/* Auto-generated, do not edit */
|
|
import React from 'react';
|
|
|
|
interface Props {
|
|
size?: number | string;
|
|
width?: number | string;
|
|
height?: number | string;
|
|
fill?: string;
|
|
}
|
|
|
|
function Integrations_microsoft(props: Props) {
|
|
const { size = 14, width = size, height = size, fill = '' } = props;
|
|
return (
|
|
<svg viewBox="0 0 24 24" fill="none" width={ `${ width }px` } height={ `${ height }px` } fill={ `${ fill }` }><path fill="#FEBA08" d="M12.75 12.75h7.5v7.5h-7.5z"/><path fill="#05A6F0" d="M3.75 12.75h7.5v7.5h-7.5z"/><path fill="#80BC06" d="M12.75 3.75h7.5v7.5h-7.5z"/><path fill="#F25325" d="M3.75 3.75h7.5v7.5h-7.5z"/></svg>
|
|
);
|
|
}
|
|
|
|
export default Integrations_microsoft;
|