fix: update iconButton border radius and padding values

This commit is contained in:
2025-09-24 19:46:29 -06:00
parent d21d55f481
commit 0d8ccf5fdb
2 changed files with 5 additions and 5 deletions

View File

@@ -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",

View File

@@ -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})'
}
}
},