mirror of https://github.com/sgoudham/carbon.git
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.
16 lines
355 B
JavaScript
16 lines
355 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 family" items={FONTS} {...props}>
|
|
{Font}
|
|
</ListSetting>
|
|
)
|
|
}
|
|
|
|
export default FontSelect
|