1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
// Copyright (C) 2023 Framework7
// SPDX-License-Identifier: MIT
// Generated from SVG file gear-alt-stroke.svg
import QtQuick
import QtQuick.Shapes
Item {
implicitWidth: 56
implicitHeight: 56
transform: [
Scale { xScale: width / 56; yScale: height / 56 }
]
objectName: "svg4"
DemoShape {
objectName: "path2"
transform: Translate { x: 4; y: 4 }
ShapePath {
objectName: "svg_path:path2"
strokeColor: "#ff333333"
strokeWidth: 3
capStyle: ShapePath.FlatCap
joinStyle: ShapePath.MiterJoin
miterLimit: 4
fillColor: "#00000000"
fillRule: ShapePath.OddEvenFill
pathHints: ShapePath.PathQuadratic | ShapePath.PathNonIntersecting | ShapePath.PathNonOverlappingControlPointTriangles
PathSvg { path: "M 18.7918 47.4333 Q 15.1455 46.6265 11.9139 44.7392 L 12.0378 42.3144 Q 12.1644 39.8356 10.4969 38.17 Q 8.8309 36.5058 6.35565 36.6322 L 3.67513 36.7691 Q 1.75575 33.7204 0.822479 30.2522 L 2.92622 28.3529 Q 4.76852 26.6896 4.7672 24.3328 Q 4.76589 21.978 2.92622 20.3171 L 0.682945 18.2919 Q 1.51045 14.8999 3.28025 11.8807 L 6.35565 12.0378 Q 8.83444 12.1644 10.5 10.4969 Q 12.1642 8.8309 12.0378 6.35565 L 11.8807 3.28025 Q 14.8999 1.51045 18.2919 0.682945 L 20.3171 2.92622 Q 21.9804 4.76852 24.3372 4.7672 Q 26.692 4.76589 28.3529 2.92622 L 30.2522 0.822479 Q 33.7204 1.75575 36.7691 3.67513 L 36.6322 6.35565 Q 36.5056 8.83444 38.1731 10.5 Q 39.8391 12.1642 42.3144 12.0378 L 44.7392 11.9139 Q 46.6265 15.1455 47.4333 18.7918 L 45.7438 20.3171 Q 43.9015 21.9804 43.9028 24.3372 Q 43.9041 26.692 45.7438 28.3529 L 47.304 29.7614 Q 46.3874 33.4812 44.3457 36.736 L 42.3144 36.6322 Q 39.8356 36.5056 38.17 38.1731 Q 36.5058 39.8391 36.6322 42.3144 L 36.736 44.3457 Q 33.4812 46.3874 29.7614 47.304 L 28.3529 45.7438 Q 26.6896 43.9015 24.3328 43.9028 Q 21.978 43.9041 20.3171 45.7438 L 18.7918 47.4333 M 24 34 Q 28.1421 34 31.0711 31.0711 Q 34 28.1421 34 24 Q 34 19.8579 31.0711 16.9289 Q 28.1421 14 24 14 Q 19.8579 14 16.9289 16.9289 Q 14 19.8579 14 24 Q 14 28.1421 16.9289 31.0711 Q 19.8579 34 24 34 " }
}
}
}
|