// Copyright 2019-2025 @pezkuwi/extension-ui authors & contributors // SPDX-License-Identifier: Apache-2.0 // We _could_ reformat, but just keep it as-is, since this is actually // externally generated and not really user-editable /* eslint-disable react/jsx-sort-props */ /* eslint-disable react/jsx-max-props-per-line */ import React from 'react'; import { styled } from '../../styled.js'; interface Props { className?: string; onClick: () => void; } function AddAccountImage ({ className, onClick }: Props): React.ReactElement { return ( ); } export default React.memo(styled(AddAccountImage)` circle, path { cursor: pointer; } path { fill: var(--textColor); } & > g > circle { stroke: var(--inputBorderColor); fill: var(--addAccountImageBackground); } `);