Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
917 Bytes
// @flow
import * as React from "react";
import cn from "classnames";
import { Card, Stamp, Header, Text } from "../";
type Props = {|
+children?: React.Node,
+className?: string,
+icon?: string,
+color?: string,
+header?: React.Node,
+footer?: React.Node,
|};
function StampCard({
children,
className,
icon,
color = "",
header,
footer,
}: Props): React.Node {
const classes = cn("p-3", className);
return (
<Card className={classes}>
<div className="d-flex align-items-center">
<Stamp color={color} icon={icon} className="mr-3" />
<div>
{header && (
<Header size={4} className="m-0">
{header}
</Header>
)}
{children}
{footer && <Text.Small muted>{footer}</Text.Small>}
</div>
</div>
</Card>
);
}
StampCard.displayName = "StampCard";
export default StampCard;