ant-design/components/card/Grid.tsx
Rustin 7b94e0bfb2
refactoring: replace deprecated React.SFC with React.FunctionComponent (#22691)
* refactor: replace deprecated React.SFC with React.FunctionComponent

* refactoring: use typedef FC
2020-03-28 11:56:57 +08:00

26 lines
800 B
TypeScript

import * as React from 'react';
import classNames from 'classnames';
import { ConfigConsumer, ConfigConsumerProps } from '../config-provider';
export interface CardGridProps {
prefixCls?: string;
style?: React.CSSProperties;
className?: string;
hoverable?: boolean;
}
const Grid: React.FC<CardGridProps> = props => (
<ConfigConsumer>
{({ getPrefixCls }: ConfigConsumerProps) => {
const { prefixCls: customizePrefixCls, className, hoverable = true, ...others } = props;
const prefixCls = getPrefixCls('card', customizePrefixCls);
const classString = classNames(`${prefixCls}-grid`, className, {
[`${prefixCls}-grid-hoverable`]: hoverable,
});
return <div {...others} className={classString} />;
}}
</ConfigConsumer>
);
export default Grid;