1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-15 07:40:07 +02:00
copilot/packages/ui-toolkit/src/typography/index.js
Sérgio Ramos 8295bd6882 chore: initial lerna setup
this shall be a progressive process
2017-05-25 10:56:50 +01:00

37 lines
525 B
JavaScript

import { css } from 'styled-components';
export const fontFamily = css`
font-family:
"Libre Franklin",
-apple-system,
BlinkMacSystemFont,
"Segoe UI",
Roboto,
Oxygen-Sans,
Ubuntu,
Cantarell,
Helvetica,
sans-serif;
`;
export const semibold = css`
font-weight: 600;
`;
export const medium = css`
font-weight: 500;
`;
export const normal = css`
font-weight: 400;
`;
export default {
fontFamily,
semibold,
medium,
normal
};
export { default as fonts } from './fonts';