commonMain.androidx.compose.material.icons.rounded.TapAndPlay.kt Maven / Gradle / Ivy
/*
* Copyright 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.material.icons.rounded
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.materialIcon
import androidx.compose.material.icons.materialPath
import androidx.compose.ui.graphics.vector.ImageVector
public val Icons.Rounded.TapAndPlay: ImageVector
get() {
if (_tapAndPlay != null) {
return _tapAndPlay!!
}
_tapAndPlay = materialIcon(name = "Rounded.TapAndPlay") {
materialPath {
moveTo(3.14f, 16.09f)
curveToRelative(-0.6f, -0.1f, -1.14f, 0.39f, -1.14f, 1.0f)
curveToRelative(0.0f, 0.49f, 0.36f, 0.9f, 0.85f, 0.98f)
curveToRelative(2.08f, 0.36f, 3.72f, 2.0f, 4.08f, 4.08f)
curveToRelative(0.08f, 0.49f, 0.49f, 0.85f, 0.98f, 0.85f)
curveToRelative(0.61f, 0.0f, 1.09f, -0.54f, 1.0f, -1.14f)
curveToRelative(-0.48f, -2.95f, -2.81f, -5.29f, -5.77f, -5.77f)
close()
moveTo(2.0f, 20.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(3.0f)
curveToRelative(0.0f, -1.66f, -1.34f, -3.0f, -3.0f, -3.0f)
close()
moveTo(3.11f, 12.06f)
curveToRelative(-0.59f, -0.06f, -1.11f, 0.4f, -1.11f, 0.99f)
curveToRelative(0.0f, 0.5f, 0.37f, 0.94f, 0.87f, 0.99f)
curveToRelative(4.27f, 0.41f, 7.67f, 3.81f, 8.08f, 8.08f)
curveToRelative(0.05f, 0.5f, 0.48f, 0.88f, 0.99f, 0.88f)
curveToRelative(0.59f, 0.0f, 1.06f, -0.51f, 1.0f, -1.1f)
curveToRelative(-0.51f, -5.2f, -4.63f, -9.32f, -9.83f, -9.84f)
close()
moveTo(17.0f, 1.01f)
lineTo(7.0f, 1.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, 0.9f, -2.0f, 2.0f)
verticalLineToRelative(7.37f)
curveToRelative(0.69f, 0.16f, 1.36f, 0.37f, 2.0f, 0.64f)
lineTo(7.0f, 5.0f)
horizontalLineToRelative(10.0f)
verticalLineToRelative(13.0f)
horizontalLineToRelative(-3.03f)
curveToRelative(0.52f, 1.25f, 0.84f, 2.59f, 0.95f, 4.0f)
lineTo(17.0f, 22.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
lineTo(19.0f, 3.0f)
curveToRelative(0.0f, -1.1f, -0.9f, -1.99f, -2.0f, -1.99f)
close()
}
}
return _tapAndPlay!!
}
private var _tapAndPlay: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy