type Props = { title: string, percent: number, } export const LinearSpeacialistBar = ({ title, percent }: Props) => { return (
{title}
) }