import React from 'react' import { Highlight } from '@freesewing/react/components/Highlight' import { Tabs, Tab } from '@freesewing/react/components/Tab' import { MiniNote } from '@freesewing/react/components/Mini' export const ConstantDocs = ({ docs }) => { if (!docs) return No docs passed in return ( <>

{docs.desc}

You can import the {docs.name} constant from the {docs.family}{' '} family in the @freesewing/react package:

{docs.importAs}

The {docs.name} function is defined{' '} on line {docs.line} in {docs.file} .

) }