refactor: drop tailwind-merge

This commit is contained in:
rusconn
2024-03-29 21:33:45 +09:00
parent 2741082c84
commit 4114f29818
12 changed files with 47 additions and 48 deletions

View File

@@ -9,7 +9,7 @@ export type BaseProps = ButtonProps & {
export function Base({ icon, iconOnly, labelText, ...props }: BaseProps) {
const button = (
<Button className="border" {...props}>
<Button className="inline-flex items-center border" {...props}>
{icon}
{!iconOnly && <span className="ml-1">{labelText}</span>}
</Button>