/*************************************************************************** * The contents of this file were generated with Amplify Studio. * * Please refrain from making any modifications to this file. * * Any changes to this file will be overwritten when running amplify pull. * **************************************************************************/ /* eslint-disable */ import React from "react"; import { getOverrideProps, getOverridesFromVariants, mergeVariantsAndOverrides, } from "@aws-amplify/ui-react/internal"; import { Flex, Icon, Text } from "@aws-amplify/ui-react"; export default function ContributorLarge(props) { const { contributor, overrides: overridesProp, ...rest } = props; const variants = [ { overrides: { "Ellipse 15": {}, "Frame 360": {}, "Jane Doe": {}, "Developer Advocate": {}, "Frame 331": {}, ContributorLarge: {}, }, variantValues: { property1: "Vertical", property2: "Large", property3: "false", property4: "false", }, }, { overrides: { "Ellipse 15": {}, "Frame 360": { border: "3px SOLID rgba(233,94,7,1)" }, "Jane Doe": { color: "rgba(233,94,7,1)" }, "Developer Advocate": {}, "Frame 331": {}, ContributorLarge: {}, }, variantValues: { property1: "Vertical", property2: "Large", property3: "true", property4: "false", }, }, { overrides: { "Ellipse 15": {}, "Frame 360": { border: "3px SOLID rgba(218,107,16,1)", backgroundColor: "rgba(242,243,243,1)", }, "Jane Doe": { color: "rgba(218,107,16,1)" }, "Developer Advocate": {}, "Frame 331": {}, ContributorLarge: {}, }, variantValues: { property1: "Vertical", property2: "Large", property3: "false", property4: "true", }, }, ]; const overrides = mergeVariantsAndOverrides( getOverridesFromVariants(variants, props), overridesProp || {} ); return ( ); }