import React from 'react'; import { PropsWithChildren } from 'react'; import { useColorPrimitives } from '../theme/colorSystem'; import BoxNucleon from './nucleons/BoxNucleon'; import TextRoleNucleon from './nucleons/TextRoleNucleon'; import { PropsWithStyle } from './nucleons/types'; export default function UIFigureTitleAtom( props: PropsWithStyle> ) { const { accent } = useColorPrimitives(); return ( {props.children} ); }