joyent-portal/packages/logos/src/mariadb.js

19 lines
1.8 KiB
JavaScript

import React from 'react';
import calcFill from './fill';
export default ({
fill = null,
light = false,
disabled = false,
colors = {},
...rest
}) => (
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 42 42" {...rest}>
<title>Artboard 1 copy 18</title>
<path
fill={calcFill({ fill, disabled, light, colors })}
d="M42 9c0-.6-.3-1-.9-.9-.6 0-.4.2-1.8.6s-3.1.2-4.7.9C30 11.5 29.05 18 25 20.4c-3.1 1.7-6.2 1.9-9 2.8a17.18 17.18 0 0 0-5.5 3.2c-1.3 1.1-1.3 2.1-2.7 3.5S2 29.9.05 32.2a1.86 1.86 0 0 0 2.1.6c-.3.5-1.8.9-1.5 1.6s4 1.3 7.3-.7c1.5-.9 2.8-2.3 5.2-2.6 3.1-.4 6.7.3 10.3.8A13 13 0 0 1 21 35.8c-.3.3.5.3 1.5.1a13.35 13.35 0 0 0 4.1-1.5c1.5-.9 1.8-3.2 3.6-3.7 1 1.6 3.9 2 5.6.7-1.5-.4-2-3.7-1.5-5.2s1-3.6 1.5-5.4.7-4.4 1.4-5.4c1-1.5 2.1-2 3-2.9A3.71 3.71 0 0 0 42 9zm-7.5 22.4c-1 .2-2.8-.2-3.2-.9.2-1 1.4-2 2-2.6a8.5 8.5 0 0 0 1.15 3.5zm4.7-18.5a8.62 8.62 0 0 0-2.5 2.2c-.6 1-1 4.4-2 7.7-.9 2.9-2.1 5.7-4.4 7-.2-.6 0-1.7-.4-2a13.32 13.32 0 0 1-1 2.4 8.91 8.91 0 0 1-6.5 5c1.5-2.1 3-4.3 3.1-7.9-1.1.2-1.1 2.8-2.2 3.5a8.09 8.09 0 0 1-2.2 0c-3-.2-6.1-1.1-8.9-.2-1.9.6-3.5 2.1-5.1 2.8a9 9 0 0 1-5.7.8c-.3-.4 1.7-.9 1.6-1.8a8.58 8.58 0 0 1-2.3-.2.78.78 0 0 1 .4-.4c1.5-1 5.7-.2 6.8-1.3a14.62 14.62 0 0 0 1.6-2.1 9.5 9.5 0 0 1 1.6-1.9l.9-.6a18.33 18.33 0 0 1 4.2-2.1c2-.7 4.1-.8 6.3-1.6a16.64 16.64 0 0 0 4-2 5 5 0 0 0 .8-.7c3.4-3.3 4.1-9.1 9.3-9.7.6-.1 1.2 0 1.6-.1a3.43 3.43 0 0 0 1.6-.4c.2.5.4.8 1.5.9a4.09 4.09 0 0 1-2.15 2.7zm-4.4-1c.7.6 2.3.1 2-1.2-1.15-.1-1.8.3-2.05 1.2zm5.3-1.5a3.93 3.93 0 0 0-.6 2c0 .2-.1.3-.1 0a4 4 0 0 1 .6-2.1c.1-.2.1-.1.1.1zm-.2-.2a5.14 5.14 0 0 0-.9 2.2c0 .2-.2.3-.1 0a5 5 0 0 1 .9-2.2c.05-.3.2-.2.05 0zm-.2-.2a5.34 5.34 0 0 0-1.3 2.3c0 .2-.2.3-.1 0a6.81 6.81 0 0 1 1.3-2.4c.05-.2.15-.1.05.1zm-.2-.2a6.68 6.68 0 0 0-1.7 2.5c-.1.2-.2.2-.1 0a6.87 6.87 0 0 1 1.7-2.5c.15-.3.15-.2.05 0z"
/>
</svg>
);