ant-design/components/card/Grid.tsx
Eugene Matvejev 21775482ab
refactor: improve card/Grid to save some bundle size after transpilation (#27804)
* improve card/Grid to save some space in transpile

* fix tslint error
2020-11-16 22:16:33 +08:00

30 lines
773 B
TypeScript

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;