|
| 1 | +package me.lkl.dalvikus.icons |
| 2 | + |
| 3 | +import androidx.compose.material.icons.Icons |
| 4 | +import androidx.compose.ui.graphics.Color |
| 5 | +import androidx.compose.ui.graphics.SolidColor |
| 6 | +import androidx.compose.ui.graphics.vector.ImageVector |
| 7 | +import androidx.compose.ui.graphics.vector.path |
| 8 | +import androidx.compose.ui.unit.dp |
| 9 | + |
| 10 | +val Icons.Filled.FamilyHistory: ImageVector |
| 11 | + get() { |
| 12 | + if (_FamilyHistory != null) { |
| 13 | + return _FamilyHistory!! |
| 14 | + } |
| 15 | + _FamilyHistory = ImageVector.Builder( |
| 16 | + name = "Filled.FamilyHistory", |
| 17 | + defaultWidth = 24.dp, |
| 18 | + defaultHeight = 24.dp, |
| 19 | + viewportWidth = 960f, |
| 20 | + viewportHeight = 960f |
| 21 | + ).apply { |
| 22 | + path(fill = SolidColor(Color(0xFFE8EAED))) { |
| 23 | + moveTo(480f, 900f) |
| 24 | + quadToRelative(-63f, 0f, -106.5f, -43.5f) |
| 25 | + reflectiveQuadTo(330f, 750f) |
| 26 | + quadToRelative(0f, -52f, 31f, -91.5f) |
| 27 | + reflectiveQuadToRelative(79f, -53.5f) |
| 28 | + verticalLineToRelative(-85f) |
| 29 | + lineTo(200f, 520f) |
| 30 | + verticalLineToRelative(-160f) |
| 31 | + lineTo(100f, 360f) |
| 32 | + verticalLineToRelative(-280f) |
| 33 | + horizontalLineToRelative(280f) |
| 34 | + verticalLineToRelative(280f) |
| 35 | + lineTo(280f, 360f) |
| 36 | + verticalLineToRelative(80f) |
| 37 | + horizontalLineToRelative(400f) |
| 38 | + verticalLineToRelative(-85f) |
| 39 | + quadToRelative(-48f, -14f, -79f, -53.5f) |
| 40 | + reflectiveQuadTo(570f, 210f) |
| 41 | + quadToRelative(0f, -63f, 43.5f, -106.5f) |
| 42 | + reflectiveQuadTo(720f, 60f) |
| 43 | + quadToRelative(63f, 0f, 106.5f, 43.5f) |
| 44 | + reflectiveQuadTo(870f, 210f) |
| 45 | + quadToRelative(0f, 52f, -31f, 91.5f) |
| 46 | + reflectiveQuadTo(760f, 355f) |
| 47 | + verticalLineToRelative(165f) |
| 48 | + lineTo(520f, 520f) |
| 49 | + verticalLineToRelative(85f) |
| 50 | + quadToRelative(48f, 14f, 79f, 53.5f) |
| 51 | + reflectiveQuadToRelative(31f, 91.5f) |
| 52 | + quadToRelative(0f, 63f, -43.5f, 106.5f) |
| 53 | + reflectiveQuadTo(480f, 900f) |
| 54 | + close() |
| 55 | + moveTo(720f, 280f) |
| 56 | + quadToRelative(29f, 0f, 49.5f, -20.5f) |
| 57 | + reflectiveQuadTo(790f, 210f) |
| 58 | + quadToRelative(0f, -29f, -20.5f, -49.5f) |
| 59 | + reflectiveQuadTo(720f, 140f) |
| 60 | + quadToRelative(-29f, 0f, -49.5f, 20.5f) |
| 61 | + reflectiveQuadTo(650f, 210f) |
| 62 | + quadToRelative(0f, 29f, 20.5f, 49.5f) |
| 63 | + reflectiveQuadTo(720f, 280f) |
| 64 | + close() |
| 65 | + moveTo(180f, 280f) |
| 66 | + horizontalLineToRelative(120f) |
| 67 | + verticalLineToRelative(-120f) |
| 68 | + lineTo(180f, 160f) |
| 69 | + verticalLineToRelative(120f) |
| 70 | + close() |
| 71 | + moveTo(480f, 820f) |
| 72 | + quadToRelative(29f, 0f, 49.5f, -20.5f) |
| 73 | + reflectiveQuadTo(550f, 750f) |
| 74 | + quadToRelative(0f, -29f, -20.5f, -49.5f) |
| 75 | + reflectiveQuadTo(480f, 680f) |
| 76 | + quadToRelative(-29f, 0f, -49.5f, 20.5f) |
| 77 | + reflectiveQuadTo(410f, 750f) |
| 78 | + quadToRelative(0f, 29f, 20.5f, 49.5f) |
| 79 | + reflectiveQuadTo(480f, 820f) |
| 80 | + close() |
| 81 | + moveTo(240f, 220f) |
| 82 | + close() |
| 83 | + moveTo(720f, 210f) |
| 84 | + close() |
| 85 | + moveTo(480f, 750f) |
| 86 | + close() |
| 87 | + } |
| 88 | + }.build() |
| 89 | + |
| 90 | + return _FamilyHistory!! |
| 91 | + } |
| 92 | + |
| 93 | +@Suppress("ObjectPropertyName") |
| 94 | +private var _FamilyHistory: ImageVector? = null |
0 commit comments