f709c12da2
* refactor: store selector callbacks less verbose * chore: prettier tailwind plugin added and respective formatting * disable metamask connection button
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
import React from 'react'
|
|
|
|
// move this component outside and probably adapt generic container component to different UI variants
|
|
export const CreditManagerContainer = ({
|
|
children,
|
|
className,
|
|
}: {
|
|
children: React.ReactNode
|
|
className?: string
|
|
}) => {
|
|
return <div className={`rounded-lg bg-[#D8DAEA] p-2 text-[#585A74] ${className}`}>{children}</div>
|
|
}
|
|
|
|
export default CreditManagerContainer
|