@surveycake/rc
Version:
react component of surveycake
12 lines (11 loc) • 375 B
TypeScript
import React from 'react';
import { Variant } from '@material-ui/core/styles/createTypography';
interface SingleProps {
children?: React.ReactNode;
fontSize: number;
fontWeight: number | string | undefined;
lineHeight: number | string | undefined;
variant: Variant;
}
declare const Row: (props: SingleProps) => JSX.Element;
export default Row;