react-code-dataset / tabler-react /src /components /PricingCard /PricingCardAttributeList.react.js
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
452 Bytes
// @flow
import * as React from "react";
import cn from "classnames";
type Props = {|
+children?: React.Node,
+className?: string,
|};
function PricingCardAttributeList({ className, children }: Props): React.Node {
const classes = cn("list-unstyled", "leading-loose", className);
return <ul className={classes}>{children}</ul>;
}
PricingCardAttributeList.displayName = "PricingCard.AttributeList";
export default PricingCardAttributeList;