blob: e2e5fb7e2d11bbfa74f49d05800340e2496d2c7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import Icon from "../icon.jsx";
export default function SequelAce(props) {
return (
<Icon {...props}>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M0 4.74C0 3.12 0 2.3.3 1.68A3 3 0 011.69.31C2.3 0 3.12 0 4.74 0h14.52c1.62 0 2.44 0 3.06.3a3 3 0 011.37 1.38c.31.62.31 1.44.31 3.06v14.52c0 1.62 0 2.44-.3 3.06a3 3 0 01-1.38 1.37c-.62.31-1.44.31-3.06.31H4.74c-1.62 0-2.44 0-3.06-.3a3 3 0 01-1.37-1.38C0 21.7 0 20.88 0 19.26V4.74zm3.4 12.22v-2.18c0 1.42 3.25 2.59 7.44 2.76a21.28 21.28 0 002.2 0c4.19-.17 7.43-1.34 7.43-2.76V17.7c0 1.41-3.24 2.58-7.44 2.76l-1.09.02c-.45 0-.81 0-1.1-.02-4.2-.18-7.44-1.35-7.44-2.76v-.74zm.01-6.44v2.91c0 1.42 3.25 2.59 7.44 2.76a21.28 21.28 0 002.2 0c4.19-.17 7.44-1.34 7.44-2.76v-.73-2.18c0 1.41-3.25 2.58-7.45 2.76l-1.09.02c-.45 0-.8 0-1.1-.02-4.2-.18-7.44-1.35-7.44-2.76zm0-4.32c0-1.5 3.82-2.7 8.54-2.7 4.71 0 8.54 1.2 8.54 2.7v3c0 1.42-3.25 2.59-7.45 2.76a21.3 21.3 0 01-2.2 0c-4.18-.17-7.43-1.34-7.43-2.76v-3z"
/>
</Icon>
);
}
|