import React from 'react' import { Flex, LabelValue, Title } from '../../' const LabelValueDetailsExamplesDark = () => { return (
<Flex> <Flex marginRight="lg" orientation="column" > <LabelValue dark icon="user" label="Age" paddingBottom="sm" title="24 yrs old" variant="details" /> <LabelValue dark icon="weight" label="Weight" title="91 kg" variant="details" /> </Flex> <Flex orientation="column" > <LabelValue dark icon="tint" label="Blood" paddingBottom="sm" title="A +" variant="details" /> <LabelValue dark icon="arrows-v" label="Height" title="187 cm" variant="details" /> </Flex> </Flex> <br /> <br /> <br /> <Title dark marginBottom="sm" size={4} text="Workout Schedule" /> <LabelValue active dark description="6 sets • 8 reps • 40-100 kg" icon="dumbbell" label="Chest" paddingBottom="sm" title="Bench Press" variant="details" /> <LabelValue active dark description="5 sets • 12 reps • 20-40 kg" icon="dumbbell" label="Biceps" paddingBottom="sm" title="Barbell Curl" variant="details" /> <LabelValue active dark description="8 sets • 8 reps • 40-120 kg" icon="dumbbell" label="Back" paddingBottom="sm" title="Back Squat" variant="details" /> </div> ) } export default LabelValueDetailsExamplesDark