{"version":3,"file":"Card-CgdtEy7E.js","sources":["../../../resources/js/Components/Card.tsx"],"sourcesContent":["import React, { ReactNode } from \"react\";\nimport InternalContainer from \"./InternalContainer\";\n\ntype CardProps = {\n className?: string;\n title?: string;\n subtitle?: string;\n children?: ReactNode;\n header?: ReactNode;\n footer?: ReactNode;\n};\n\nconst Card = (props: CardProps) => {\n const { className = \"\" } = props;\n\n return (\n
\n {props.subtitle}\n
\n )}\n