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" "README.md"
], ],
"main": "dist/index.js", "main": "dist/index.js",
"version": "0.0.6", "version": "0.0.7",
"scripts": { "scripts": {
"prepare": "ts-patch install -s && bun .husky/install.ts", "prepare": "ts-patch install -s && bun .husky/install.ts",
"prepublishOnly": "bun run build", "prepublishOnly": "bun run build",

View File

@@ -42,7 +42,7 @@ const iconButtonRecipe = ({ semanticColorNames }: IconButtonRecipeArg) => {
return [ return [
shape, shape,
{ {
borderRadius: 'none' borderRadius: 'sm'
} }
] ]
default: default:
@@ -59,13 +59,13 @@ const iconButtonRecipe = ({ semanticColorNames }: IconButtonRecipeArg) => {
}, },
size: { size: {
small: { small: {
padding: 'calc({spacing.xs} * 0.75) ' padding: 'calc({spacing.sm} * 0.5)'
}, },
medium: { medium: {
padding: 'xs' padding: 'calc({spacing.sm} * 0.75)'
}, },
large: { large: {
padding: 'calc({spacing.xs} * 1.25)' padding: 'calc({spacing.sm})'
} }
} }
}, },