💄 icon button with text

This commit is contained in:
Timur Ercan
2023-02-24 11:10:30 +01:00
parent 0397c7a1fb
commit 067a00bd9f

View File

@ -28,6 +28,7 @@ export function IconButton(props: any) {
) : (
""
)}
{props.children}
</Link>
) : (
<button
@ -49,6 +50,7 @@ export function IconButton(props: any) {
) : (
""
)}
{props.children}
</button>
);
}