react-conventions
Version:
An open source set of React components that implement Ambassador's Design and UX patterns.
37 lines (35 loc) • 683 B
JavaScript
const fontList = {
proximaNova: [
{
fontFamily: 'proxima_nova',
fontWeight: '100',
fontStyle: 'normal',
weight: 'Light'
},
{
fontFamily: 'proxima_nova',
fontWeight: 'normal',
fontStyle: 'normal',
weight: 'Regular'
},
{
fontFamily: 'proxima_nova',
fontWeight: '200',
fontStyle: 'normal',
weight: 'Semibold'
},
{
fontFamily: 'proxima_nova',
fontWeight: '500',
fontStyle: 'normal',
weight: 'Bold'
},
{
fontFamily: 'proxima_nova',
fontWeight: 'normal',
fontStyle: 'italic',
weight: 'Italic'
}
]
};
export default fontList