UNPKG

oy-vey

Version:

React utilities for building server-side email templates.

38 lines (30 loc) 660 B
/** * EmptySpace: * Table-based way to add vertical space. Uses line-height. */ import React from 'react'; import {Table, TBody, TR, TD} from 'oy-vey'; const EmptySpace = (props) => { const style = { lineHeight: `${props.height}px`, fontSize: '1px', msoLineHeightRule: 'exactly' }; return ( <Table width="100%"> <TBody> <TR> <TD width="100%" height={`${props.height}px`} style={style} dangerouslySetInnerHTML={{__html: '&nbsp;'}} /> </TR> </TBody> </Table> ); }; EmptySpace.defaultProps = { height: '16' }; export default EmptySpace;