UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 337 B
import React, { CSSProperties, ReactNode } from 'react'; type Props = { children: ReactNode; isHoverable?: boolean; isStriped?: boolean; style?: CSSProperties; className?: string; }; declare const Body: ({ children, className, style, isHoverable, isStriped, }: Props) => React.JSX.Element; export { Body };