From 0d8ccf5fdb80b3bb7976099b5342965d3f306c74 Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Wed, 24 Sep 2025 19:46:29 -0600 Subject: [PATCH] fix: update iconButton border radius and padding values --- package.json | 2 +- src/recipes/iconButton.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6540e4d..28c5c2e 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "README.md" ], "main": "dist/index.js", - "version": "0.0.6", + "version": "0.0.7", "scripts": { "prepare": "ts-patch install -s && bun .husky/install.ts", "prepublishOnly": "bun run build", diff --git a/src/recipes/iconButton.ts b/src/recipes/iconButton.ts index 93aed13..99c0695 100644 --- a/src/recipes/iconButton.ts +++ b/src/recipes/iconButton.ts @@ -42,7 +42,7 @@ const iconButtonRecipe = ({ semanticColorNames }: IconButtonRecipeArg) => { return [ shape, { - borderRadius: 'none' + borderRadius: 'sm' } ] default: @@ -59,13 +59,13 @@ const iconButtonRecipe = ({ semanticColorNames }: IconButtonRecipeArg) => { }, size: { small: { - padding: 'calc({spacing.xs} * 0.75) ' + padding: 'calc({spacing.sm} * 0.5)' }, medium: { - padding: 'xs' + padding: 'calc({spacing.sm} * 0.75)' }, large: { - padding: 'calc({spacing.xs} * 1.25)' + padding: 'calc({spacing.sm})' } } },