export const CardCustom = ({ header, content, type = 'success' }) => { let backgroundColor switch (type) { case 'success': backgroundColor = 'bg-green-100' break case 'secondary': backgroundColor = 'bg-gray-100' break case 'biru': backgroundColor = 'bg-biru' break default: backgroundColor = 'bg-green-100' break } return (

{header}

{content}

) } export const CardFilterLaporan = ({ header, children }) => { return (

{header}

{children}
) }