import { MiniTitle } from '../../ui/MiniTitle'; import { AppearanceText } from '../../ui/AppearanceText'; import { motion } from 'framer-motion'; import AppearanceHr from '../../ui/AppearanceHr'; export function Effeciency() { return (
); } function Figure({ title, percents, type = 'left', }: { percents: number; title: string; type?: 'left' | 'right'; }) { return (
{title}

{percents} %

); }