|
|
@ -18,19 +18,13 @@ package com.google.samples.apps.nowinandroid.core.designsystem.icon
|
|
|
|
|
|
|
|
|
|
|
|
import androidx.annotation.DrawableRes
|
|
|
|
import androidx.annotation.DrawableRes
|
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
|
import androidx.compose.material.icons.Icons
|
|
|
|
import androidx.compose.material.icons.filled.ArrowDropDown
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.filled.ArrowDropUp
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.filled.MoreVert
|
|
|
|
import androidx.compose.material.icons.filled.MoreVert
|
|
|
|
import androidx.compose.material.icons.outlined.AccountCircle
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.rounded.Add
|
|
|
|
import androidx.compose.material.icons.rounded.Add
|
|
|
|
import androidx.compose.material.icons.rounded.ArrowBack
|
|
|
|
import androidx.compose.material.icons.rounded.ArrowBack
|
|
|
|
import androidx.compose.material.icons.rounded.Check
|
|
|
|
import androidx.compose.material.icons.rounded.Check
|
|
|
|
import androidx.compose.material.icons.rounded.Close
|
|
|
|
import androidx.compose.material.icons.rounded.Close
|
|
|
|
import androidx.compose.material.icons.rounded.ExpandLess
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.rounded.Fullscreen
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.rounded.Grid3x3
|
|
|
|
import androidx.compose.material.icons.rounded.Grid3x3
|
|
|
|
import androidx.compose.material.icons.rounded.Person
|
|
|
|
import androidx.compose.material.icons.rounded.Person
|
|
|
|
import androidx.compose.material.icons.rounded.PlayArrow
|
|
|
|
|
|
|
|
import androidx.compose.material.icons.rounded.Search
|
|
|
|
import androidx.compose.material.icons.rounded.Search
|
|
|
|
import androidx.compose.material.icons.rounded.Settings
|
|
|
|
import androidx.compose.material.icons.rounded.Settings
|
|
|
|
import androidx.compose.material.icons.rounded.ShortText
|
|
|
|
import androidx.compose.material.icons.rounded.ShortText
|
|
|
@ -45,25 +39,19 @@ import com.google.samples.apps.nowinandroid.core.designsystem.R
|
|
|
|
* Now in Android icons. Material icons are [ImageVector]s, custom icons are drawable resource IDs.
|
|
|
|
* Now in Android icons. Material icons are [ImageVector]s, custom icons are drawable resource IDs.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
object NiaIcons {
|
|
|
|
object NiaIcons {
|
|
|
|
val AccountCircle = Icons.Outlined.AccountCircle
|
|
|
|
|
|
|
|
val Add = Icons.Rounded.Add
|
|
|
|
val Add = Icons.Rounded.Add
|
|
|
|
val ArrowBack = Icons.Rounded.ArrowBack
|
|
|
|
val ArrowBack = Icons.Rounded.ArrowBack
|
|
|
|
val ArrowDropDown = Icons.Default.ArrowDropDown
|
|
|
|
|
|
|
|
val ArrowDropUp = Icons.Default.ArrowDropUp
|
|
|
|
|
|
|
|
val Bookmark = R.drawable.ic_bookmark
|
|
|
|
val Bookmark = R.drawable.ic_bookmark
|
|
|
|
val BookmarkBorder = R.drawable.ic_bookmark_border
|
|
|
|
val BookmarkBorder = R.drawable.ic_bookmark_border
|
|
|
|
val Bookmarks = R.drawable.ic_bookmarks
|
|
|
|
val Bookmarks = R.drawable.ic_bookmarks
|
|
|
|
val BookmarksBorder = R.drawable.ic_bookmarks_border
|
|
|
|
val BookmarksBorder = R.drawable.ic_bookmarks_border
|
|
|
|
val Check = Icons.Rounded.Check
|
|
|
|
val Check = Icons.Rounded.Check
|
|
|
|
val Close = Icons.Rounded.Close
|
|
|
|
val Close = Icons.Rounded.Close
|
|
|
|
val ExpandLess = Icons.Rounded.ExpandLess
|
|
|
|
|
|
|
|
val Fullscreen = Icons.Rounded.Fullscreen
|
|
|
|
|
|
|
|
val Grid3x3 = Icons.Rounded.Grid3x3
|
|
|
|
val Grid3x3 = Icons.Rounded.Grid3x3
|
|
|
|
val MenuBook = R.drawable.ic_menu_book
|
|
|
|
val MenuBook = R.drawable.ic_menu_book
|
|
|
|
val MenuBookBorder = R.drawable.ic_menu_book_border
|
|
|
|
val MenuBookBorder = R.drawable.ic_menu_book_border
|
|
|
|
val MoreVert = Icons.Default.MoreVert
|
|
|
|
val MoreVert = Icons.Default.MoreVert
|
|
|
|
val Person = Icons.Rounded.Person
|
|
|
|
val Person = Icons.Rounded.Person
|
|
|
|
val PlayArrow = Icons.Rounded.PlayArrow
|
|
|
|
|
|
|
|
val Search = Icons.Rounded.Search
|
|
|
|
val Search = Icons.Rounded.Search
|
|
|
|
val Settings = Icons.Rounded.Settings
|
|
|
|
val Settings = Icons.Rounded.Settings
|
|
|
|
val ShortText = Icons.Rounded.ShortText
|
|
|
|
val ShortText = Icons.Rounded.ShortText
|
|
|
|