Spaces:
Paused
Paused
File size: 318 Bytes
a0fda44 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import React from "react";
function CTAIconWrapper({ className, children, onClick }) {
return (
<div
onClick={onClick}
className={`bg-cta-icon flex items-center justify-center w-[5.5rem] h-[5.5rem] rounded-full ${className}`}
>
{children}
</div>
);
}
export default CTAIconWrapper;
|