// @flow import styled from 'styled-components'; import * as React from 'react'; /***********/ /*
*/
/********/
type TableDataProps = {
compact?: boolean,
align?: 'center' | 'left',
};
const TableDataStyled: React.ComponentType<{
compact?: boolean,
align?: 'center' | 'left',
}> = styled.td`
vertical-align: top;
padding: 0 var(--padding-md);
text-align: ${({ align }) => align || 'left'};
`;
const TableData = (props: TableDataProps) => | */
/********/
type TableHeaderProps = {
compact?: boolean,
align?: 'center' | 'left',
};
const TableHeaderStyled: React.ComponentType |
---|