8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
export default function IconButton({ children }) {
|
|
return (
|
|
<button className="bg-gray-800 shadow-md h-7 w-7 text-white text-xs flex items-center justify-center">
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|