17 lines
410 B
TypeScript
17 lines
410 B
TypeScript
|
|
interface cardProps {
|
|
src?: string
|
|
button_link?: string
|
|
button_text?: string
|
|
}
|
|
|
|
export default function ContentCard(buttonProps: cardProps) {
|
|
return (
|
|
<>
|
|
<img src={buttonProps.src}></img>
|
|
<button className="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded-full">
|
|
{buttonProps.button_text}
|
|
</button>
|
|
</>
|
|
)
|
|
}
|