import * as React from "react";
export const PrefGroup = (props) => {
return
{props.children}
;
};
export const Pref = (props) => {
const justifyContent = props.alignTop ? "normal" : "center";
return (
{props.title}
{props.subtitle && ({props.subtitle})}
{props.description && (
{props.description}
)}
{props.children}
);
};