/*************************************************************************** * 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 AmplifyBorderLogo from "./AmplifyBorderLogo"; import { Divider, Flex, Text } from "@aws-amplify/ui-react"; import HeartIcon from "./HeartIcon"; export default function MadeLabel(props) { const { overrides: overridesProp, ...rest } = props; const variants = [ { overrides: { AmplifyBorderLogo: {}, Divider: {}, "Made with": {}, HeartIcon: {}, "in Amplify": {}, "Frame 386": {}, MadeLabel: {}, }, variantValues: { isHover: "false", isActive: "false" }, }, { overrides: { AmplifyBorderLogo: {}, Divider: {}, "Made with": { color: "rgba(35,47,62,1)" }, HeartIcon: {}, "in Amplify": { color: "rgba(35,47,62,1)" }, "Frame 386": {}, MadeLabel: { border: "1px SOLID rgba(35,47,62,1)", backgroundColor: "rgba(250,250,250,1)", }, }, variantValues: { isHover: "true", isActive: "false" }, }, { overrides: { AmplifyBorderLogo: {}, Divider: {}, "Made with": { color: "rgba(35,47,62,1)" }, HeartIcon: {}, "in Amplify": { color: "rgba(35,47,62,1)" }, "Frame 386": {}, MadeLabel: { border: "1px SOLID rgba(35,47,62,1)", backgroundColor: "rgba(242,243,243,1)", }, }, variantValues: { isHover: "false", isActive: "true" }, }, ]; const overrides = mergeVariantsAndOverrides( getOverridesFromVariants(variants, props), overridesProp || {} ); return ( ); }