{"version":3,"file":"Jazzicon.mjs","sourceRoot":"","sources":["../../../../src/components/temp-components/Jazzicon/Jazzicon.tsx"],"names":[],"mappings":";;;;;;AAAA,OAAO,MAAK,cAAc;;AAC1B,OAAO,EAAE,IAAI,EAAkB,8BAAqB;AACpD,OAAO,WAAU,8BAA8B;;AAI/C,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,EAAE,MAAM,EAAE,GAAG,KAAK,EAAiB,EAAE,EAAE,CAAC,CAC/D,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,CACnB;IAAA,CAAC,UAAU,CACT,IAAI,KAAK,CAAC,CACV,cAAc,CAAC,CAAC;QACd,YAAY,EAAE,CAAC;QACf,GAAI,KAAK,CAAC,cAA4B;KACvC,CAAC,EAEN;EAAA,EAAE,IAAI,CAAC,CACR,CAAC","sourcesContent":["import React from 'react';\nimport { View, type ViewStyle } from 'react-native';\nimport RNJazzicon from 'react-native-jazzicon';\n\nimport type { JazziconProps } from './Jazzicon.types';\n\nexport const Jazzicon = ({ testID, ...props }: JazziconProps) => (\n  <View testID={testID}>\n    <RNJazzicon\n      {...props}\n      containerStyle={{\n        borderRadius: 0, // Override circular border radius to make it square\n        ...(props.containerStyle as ViewStyle),\n      }}\n    />\n  </View>\n);\n"]}