import React from 'react';

import {
  AvatarComponent
} from '@alicloud/console-components';

import {
  ITestingProps
} from '../../types';

export default function Testing({
  component
}: ITestingProps<AvatarComponent>): JSX.Element {
  const Avatar = component;
  
  return <>
    <Avatar shape="square" />
    <Avatar icon="account" />
    <Avatar>驳</Avatar>
    <Avatar>
      <strong style={{
        color: 'lightpink', fontSize: 16
      }}>是</strong>
    </Avatar>
  </>;
}
