@seidhr/sanity-plugin-muna-schemas
Version:
Muna or ᛗᚢᚾᚨ means remember in norse. Muna is a schema for the Sanity Studio that enables detailed descriptions of cultural heritage objects and knowledge about their contexts as well as pages about them (or anything else really.)
15 lines (12 loc) • 307 B
JavaScript
import React from 'react'
import PropTypes from 'prop-types'
import { GiNailedFoot } from 'react-icons/gi'
const FootnoteRenderer = props => (
<span>
{props.children} <GiNailedFoot />
</span>
)
FootnoteRenderer.propTypes = {
children: PropTypes.node.isRequired
}
export default FootnoteRenderer