1 /* 2 * Copyright 2021 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // VERSION: 14_1_0 17 // GENERATED CODE - DO NOT MODIFY BY HAND 18 19 package androidx.compose.material3.tokens 20 21 import androidx.compose.foundation.shape.CircleShape 22 import androidx.compose.foundation.shape.CornerSize 23 import androidx.compose.foundation.shape.RoundedCornerShape 24 import androidx.compose.ui.graphics.RectangleShape 25 import androidx.compose.ui.unit.dp 26 27 internal object ShapeTokens { 28 val CornerExtraExtraLarge = RoundedCornerShape(48.0.dp) 29 val CornerExtraLarge = RoundedCornerShape(28.0.dp) 30 val CornerExtraLargeIncreased = RoundedCornerShape(32.0.dp) 31 val CornerExtraLargeTop = 32 RoundedCornerShape( 33 topStart = 28.0.dp, 34 topEnd = 28.0.dp, 35 bottomEnd = 0.0.dp, 36 bottomStart = 0.0.dp, 37 ) 38 val CornerExtraSmall = RoundedCornerShape(4.0.dp) 39 val CornerExtraSmallTop = 40 RoundedCornerShape( 41 topStart = 4.0.dp, 42 topEnd = 4.0.dp, 43 bottomEnd = 0.0.dp, 44 bottomStart = 0.0.dp 45 ) 46 val CornerFull = CircleShape 47 val CornerLarge = RoundedCornerShape(16.0.dp) 48 val CornerLargeEnd = 49 RoundedCornerShape( 50 topStart = 0.0.dp, 51 topEnd = 16.0.dp, 52 bottomEnd = 16.0.dp, 53 bottomStart = 0.0.dp, 54 ) 55 val CornerLargeIncreased = RoundedCornerShape(20.0.dp) 56 val CornerLargeStart = 57 RoundedCornerShape( 58 topStart = 16.0.dp, 59 topEnd = 0.0.dp, 60 bottomEnd = 0.0.dp, 61 bottomStart = 16.0.dp, 62 ) 63 val CornerLargeTop = 64 RoundedCornerShape( 65 topStart = 16.0.dp, 66 topEnd = 16.0.dp, 67 bottomEnd = 0.0.dp, 68 bottomStart = 0.0.dp, 69 ) 70 val CornerMedium = RoundedCornerShape(12.0.dp) 71 val CornerNone = RectangleShape 72 val CornerSmall = RoundedCornerShape(8.0.dp) 73 val CornerValueExtraExtraLarge = CornerSize(48.0.dp) 74 val CornerValueExtraLarge = CornerSize(28.0.dp) 75 val CornerValueExtraLargeIncreased = CornerSize(32.0.dp) 76 val CornerValueExtraSmall = CornerSize(4.0.dp) 77 val CornerValueLarge = CornerSize(16.0.dp) 78 val CornerValueLargeIncreased = CornerSize(20.0.dp) 79 val CornerValueMedium = CornerSize(12.0.dp) 80 val CornerValueNone = CornerSize(0.0.dp) 81 val CornerValueSmall = CornerSize(8.0.dp) 82 } 83