You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

EndMeetingIcon.tsx 484B

1234567891011121314151617
  1. import React from 'react';
  2. import Icon from '../../../../base/icons/components/Icon';
  3. import { IconHangup } from '../../../../base/icons/svg';
  4. import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
  5. /**
  6. * Implements an end meeting icon.
  7. *
  8. * @returns {JSX.Element} - The end meeting icon.
  9. */
  10. const EndMeetingIcon = (): JSX.Element => (<Icon
  11. color = { BaseTheme.palette.icon01 }
  12. size = { 20 }
  13. src = { IconHangup } />);
  14. export default EndMeetingIcon;