mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-29 13:58:02 +03:00
8 lines
149 B
JavaScript
8 lines
149 B
JavaScript
import merge from 'lodash.merge'
|
|
import aspect from './aspect'
|
|
|
|
export default theme =>
|
|
merge(theme, aspect(theme), {
|
|
aspectRatio: 4 / 3,
|
|
})
|