From 600218cb11b2b60783fd5edf8ceeeaaf26fa6dce Mon Sep 17 00:00:00 2001 From: amaliadwiy Date: Thu, 21 May 2026 13:52:30 +0800 Subject: [PATCH] =?UTF-8?q?style:=20tambah=20token=20borderRadius=20(round?= =?UTF-8?q?04,=20round12,=20roundFull)=20dan=20update=20round05=205?= =?UTF-8?q?=E2=86=928?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- constants/styles/border.styles.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/constants/styles/border.styles.ts b/constants/styles/border.styles.ts index 834ae46..08f27f0 100644 --- a/constants/styles/border.styles.ts +++ b/constants/styles/border.styles.ts @@ -1,12 +1,15 @@ import { StyleSheet } from "react-native"; const BorderStyles = StyleSheet.create({ - round05: { borderRadius: 5 }, + round04: { borderRadius: 4 }, + round05: { borderRadius: 8 }, round08: { borderRadius: 8 }, round10: { borderRadius: 10 }, + round12: { borderRadius: 12 }, round15: { borderRadius: 15 }, round20: { borderRadius: 20 }, round30: { borderRadius: 30 }, + roundFull: { borderRadius: 100 }, borderRight: { borderRightWidth: 1, borderRightColor: '#d6d8f6' }, borderLeft: { borderLeftWidth: 1, borderLeftColor: '#d6d8f6' }, borderBottom: { borderBottomWidth: 1, borderBottomColor: '#d6d8f6' },