You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
773 B
29 lines
773 B
import * as React from 'react';
|
|
import classNames from 'classnames';
|
|
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
|
|
|
|
export interface CardGridProps {
|
|
prefixCls?: string;
|
|
className?: string;
|
|
hoverable?: boolean;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
const Grid: React.FC<CardGridProps> = ({ prefixCls, className, hoverable = true, ...props }) => (
|
|
<ConfigConsumer>
|
|
{({ getPrefixCls }: ConfigConsumerProps) => {
|
|
const prefix = getPrefixCls('card', prefixCls);
|
|
const classString = classNames(
|
|
`${prefix}-grid`,
|
|
className,
|
|
{
|
|
[`${prefix}-grid-hoverable`]: hoverable,
|
|
},
|
|
);
|
|
|
|
return <div {...props} className={classString} />;
|
|
}}
|
|
</ConfigConsumer>
|
|
);
|
|
|
|
export default Grid;
|
|
|