Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | import { FC } from 'react'; import { ReactBarcode } from 'react-jsbarcode'; import styled from 'styled-components'; type Props = { visible_id: string; }; const StyledBarcode = styled.div` display: inline-block; margin: 58.6363636px 0 0 15px; padding: 15px 15px 5px 15px; //BUG: https://github.com/niklasvh/html2canvas/issues/2739 // backgroundColor: "white"; height: 60px; width: 158px; border: 2px solid rgb(0, 0, 0); `; const StyledHumanReadable = styled.p` margin-top: 3px; margin: 0; padding: 0; text-align: center; font-size: 18px; font-family: ZeroXProto; font-weight: bold; `; const Barcode: FC<Props> = (props) => { return ( <StyledBarcode> <div style={{ display: 'flex', justifyContent: 'center' }}> <ReactBarcode value={props.visible_id} options={{ format: 'code128', height: 35, displayValue: false, lineColor: '#ED6D1F', margin: 0, }} /> </div> <StyledHumanReadable>{props.visible_id}</StyledHumanReadable> </StyledBarcode> ); }; export default Barcode; |