Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Icon 컴포넌트 추가, filled/line 아이콘 정의 #5

Merged
merged 12 commits into from
Jul 27, 2024
Prev Previous commit
Next Next commit
filled (Add ~ Eye)
  • Loading branch information
cometj03 committed Jul 25, 2024
commit 8f743f547100fd7a67bde60ff514bef629e48796
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.ui.graphics.vector.ImageVector
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath


private var _arrowsChevronDown: ImageVector? = null

public val HandyIcons.Filled.ArrowsChevronDown: ImageVector
get() {
if (_arrowsChevronDown != null) {
return _arrowsChevronDown!!
}
_arrowsChevronDown = handyIcon(name = "Filled.ArrowsChevronDown") {
handyPath {
moveTo(20.4208f, 6f)
curveTo(20.0166f, 6f, 19.6124f, 6.1537f, 19.304f, 6.4621f)
lineTo(11.9998f, 13.7674f)
lineTo(4.69553f, 6.46211f)
curveTo(4.0787f, 5.8463f, 3.0787f, 5.8463f, 2.4618f, 6.4621f)
curveTo(1.846f, 7.0789f, 1.846f, 8.079f, 2.4618f, 8.6958f)
lineTo(10.8829f, 17.1169f)
curveTo(11.4997f, 17.7326f, 12.4998f, 17.7326f, 13.1166f, 17.1169f)
lineTo(21.5377f, 8.69579f)
curveTo(22.1534f, 8.079f, 22.1534f, 7.0789f, 21.5377f, 6.4621f)
curveTo(21.2292f, 6.1537f, 20.825f, 6f, 20.4208f, 6f)
close()
}
}
return _arrowsChevronDown!!
}

Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath


private var _Arrowschevronleftfilled: ImageVector? = null
private var _arrowsChevronLeft: ImageVector? = null

public val Arrowschevronleftfilled: ImageVector
public val HandyIcons.Filled.ArrowsChevronLeft: ImageVector
get() {
if (_Arrowschevronleftfilled != null) {
return _Arrowschevronleftfilled!!
if (_arrowsChevronLeft != null) {
return _arrowsChevronLeft!!
}
_Arrowschevronleftfilled = ImageVector.Builder(
name = "Arrowschevronleftfilled",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
_arrowsChevronLeft = handyIcon(name = "Filled.ArrowsChevronLeft") {
handyPath {
moveTo(15.9999f, 21.5f)
curveTo(15.6025f, 21.4986f, 15.2216f, 21.3405f, 14.9399f, 21.06f)
Expand All @@ -38,7 +31,6 @@ public val Arrowschevronleftfilled: ImageVector
curveTo(16.7783f, 21.3405f, 16.3974f, 21.4986f, 15.9999f, 21.5f)
close()
}
}.build()
return _Arrowschevronleftfilled!!
}
return _arrowsChevronLeft!!
}

Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.ui.graphics.vector.ImageVector
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath

private var _arrowsChevronRight: ImageVector? = null

public val HandyIcons.Filled.ArrowsChevronRight: ImageVector
get() {
if (_arrowsChevronRight != null) {
return _arrowsChevronRight!!
}
_arrowsChevronRight = handyIcon(name = "Filled.ArrowsChevronRight") {
handyPath {
moveTo(6.20996f, 20.2104f)
curveTo(6.21f, 19.8062f, 6.3636f, 19.402f, 6.6721f, 19.0936f)
lineTo(13.9773f, 11.7894f)
lineTo(6.67207f, 4.48514f)
curveTo(6.0563f, 3.8683f, 6.0563f, 2.8683f, 6.6721f, 2.2515f)
curveTo(7.2889f, 1.6357f, 8.2889f, 1.6357f, 8.9057f, 2.2515f)
lineTo(17.3268f, 10.6725f)
curveTo(17.9426f, 11.2894f, 17.9426f, 12.2894f, 17.3268f, 12.9062f)
lineTo(8.90575f, 21.3273f)
curveTo(8.2889f, 21.9431f, 7.2889f, 21.9431f, 6.6721f, 21.3273f)
curveTo(6.3636f, 21.0188f, 6.21f, 20.6146f, 6.21f, 20.2104f)
close()
}
}
return _arrowsChevronRight!!
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.ui.graphics.vector.ImageVector
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath

private var _arrowsChevronUp: ImageVector? = null

public val HandyIcons.Filled.ArrowsChevronUp: ImageVector
get() {
if (_arrowsChevronUp != null) {
return _arrowsChevronUp!!
}
_arrowsChevronUp = handyIcon(name = "Filled.ArrowsChevronUp") {
handyPath {
moveTo(20.4208f, 17.5787f)
curveTo(20.0166f, 17.5787f, 19.6124f, 17.425f, 19.304f, 17.1166f)
lineTo(11.9998f, 9.81132f)
lineTo(4.69553f, 17.1166f)
curveTo(4.0787f, 17.7324f, 3.0787f, 17.7324f, 2.4618f, 17.1166f)
curveTo(1.846f, 16.4998f, 1.846f, 15.4997f, 2.4618f, 14.8829f)
lineTo(10.8829f, 6.46184f)
curveTo(11.4997f, 5.846f, 12.4998f, 5.846f, 13.1166f, 6.4618f)
lineTo(21.5377f, 14.8829f)
curveTo(22.1534f, 15.4997f, 22.1534f, 16.4998f, 21.5377f, 17.1166f)
curveTo(21.2292f, 17.425f, 20.825f, 17.5787f, 20.4208f, 17.5787f)
close()
}
}
return _arrowsChevronUp!!
}

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath


private var _Bookmarkfilled: ImageVector? = null
private var _bookmark: ImageVector? = null

public val Bookmarkfilled: ImageVector
public val HandyIcons.Filled.Bookmark: ImageVector
get() {
if (_Bookmarkfilled != null) {
return _Bookmarkfilled!!
if (_bookmark != null) {
return _bookmark!!
}
_Bookmarkfilled = ImageVector.Builder(
name = "Bookmarkfilled",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
_bookmark = handyIcon(name = "Filled.Bookmark") {
handyPath {
moveTo(16.77f, 20.7843f)
lineTo(12.48f, 17.4943f)
Expand All @@ -39,7 +32,7 @@ public val Bookmarkfilled: ImageVector
curveTo(17.501f, 21.0609f, 17.0855f, 21.0161f, 16.77f, 20.7843f)
close()
}
}.build()
return _Bookmarkfilled!!
}
return _bookmark!!
}

Original file line number Diff line number Diff line change
@@ -1,31 +1,20 @@
package com.yourssu.handy.compose.icons.filled

import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.vector.ImageVector
import com.yourssu.handy.compose.icons.HandyIcons
import com.yourssu.handy.compose.icons.handyIcon
import com.yourssu.handy.compose.icons.handyPath

private var _Calenderfilled: ImageVector? = null
private var _calender: ImageVector? = null

public val Calenderfilled: ImageVector
public val HandyIcons.Filled.Calender: ImageVector
get() {
if (_Calenderfilled != null) {
return _Calenderfilled!!
if (_calender != null) {
return _calender!!
}
_Calenderfilled = ImageVector.Builder(
name = "Calenderfilled",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
path(
fill = SolidColor(Color(0xFF000000)),
fillAlpha = 1.0f,
stroke = null,
strokeAlpha = 1.0f,
strokeLineWidth = 1.0f,
strokeLineCap = StrokeCap.Butt,
strokeLineJoin = StrokeJoin.Miter,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.EvenOdd
) {
_calender = handyIcon(name = "") {
handyPath(pathFillType = PathFillType.EvenOdd) {
moveTo(16.9f, 3.57f)
horizontalLineTo(17f)
curveTo(19.7614f, 3.57f, 22f, 5.8086f, 22f, 8.57f)
Expand Down Expand Up @@ -56,7 +45,7 @@ public val Calenderfilled: ImageVector
curveTo(6.75f, 9.3242f, 7.0858f, 9.66f, 7.5f, 9.66f)
close()
}
}.build()
return _Calenderfilled!!
}
return _calender!!
}

Loading