import React from 'react'; type Props = { text: string; }; export const PillDivider = (props: Props) => { return (
{props.text}
); };