You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
carbon/components/FontSelect.js

16 lines
348 B
JavaScript

import React from 'react'
import ListSetting from './ListSetting'
import { FONTS } from '../lib/constants'
const Font = font => <span style={{ fontFamily: font.id }}>{font.name}</span>
function FontSelect(props) {
return (
<ListSetting title="Font" items={FONTS} {...props}>
{Font}
</ListSetting>
)
}
export default FontSelect