import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.PathFillType import androidx.compose.ui.graphics.SolidColor import androidx.compose.ui.graphics.StrokeCap import androidx.compose.ui.graphics.StrokeJoin import androidx.compose.ui.graphics.vector.ImageVector import androidx.compose.ui.graphics.vector.path import androidx.compose.ui.unit.dp public val Contacts_product: ImageVector get() { if (_Contacts_product != null) { return _Contacts_product!! } _Contacts_product = ImageVector.Builder( name = "Contacts_product", defaultWidth = 24.dp, defaultHeight = 24.dp, viewportWidth = 960f, viewportHeight = 960f ).apply { path( fill = SolidColor(Color.Black), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(185f, 880f) quadToRelative(-17f, 0f, -29.5f, -12.5f) reflectiveQuadTo(143f, 838f) verticalLineToRelative(-105f) quadToRelative(0f, -90f, 56f, -159f) reflectiveQuadToRelative(144f, -88f) quadToRelative(-40f, 28f, -62f, 70.5f) reflectiveQuadTo(259f, 648f) verticalLineToRelative(190f) quadToRelative(0f, 11f, 3f, 22f) reflectiveQuadToRelative(10f, 20f) close() moveToRelative(147f, 0f) quadToRelative(-17f, 0f, -29.5f, -12.5f) reflectiveQuadTo(290f, 838f) verticalLineToRelative(-190f) quadToRelative(0f, -70f, 49.5f, -119f) reflectiveQuadTo(459f, 480f) horizontalLineToRelative(189f) quadToRelative(70f, 0f, 119f, 49f) reflectiveQuadToRelative(49f, 119f) verticalLineToRelative(64f) quadToRelative(0f, 70f, -49f, 119f) reflectiveQuadTo(648f, 880f) close() moveToRelative(148f, -484f) quadToRelative(-66f, 0f, -112f, -46f) reflectiveQuadToRelative(-46f, -112f) reflectiveQuadToRelative(46f, -112f) reflectiveQuadToRelative(112f, -46f) reflectiveQuadToRelative(112f, 46f) reflectiveQuadToRelative(46f, 112f) reflectiveQuadToRelative(-46f, 112f) reflectiveQuadToRelative(-112f, 46f) } }.build() return _Contacts_product!! } private var _Contacts_product: ImageVector? = null