iconExpand.tsx 695 B

123456789101112131415161718192021
  1. import * as React from 'react';
  2. import SvgIcon from './svgIcon';
  3. type Props = React.ComponentProps<typeof SvgIcon>;
  4. const IconExpand = React.forwardRef(function IconExpand(
  5. props: Props,
  6. ref: React.Ref<SVGSVGElement>
  7. ) {
  8. return (
  9. <SvgIcon {...props} ref={ref}>
  10. <path d="M12.69,6.24A.74.74,0,0,1,12.16,6L8,1.87,3.84,6A.74.74,0,0,1,2.78,6,.75.75,0,0,1,2.78,5L7.47.27a.75.75,0,0,1,1.06,0L13.22,5a.75.75,0,0,1,0,1.06A.74.74,0,0,1,12.69,6.24Z" />
  11. <path d="M8,16a.75.75,0,0,1-.53-.22L2.78,11.09A.75.75,0,1,1,3.84,10L8,14.19,12.16,10a.75.75,0,1,1,1.06,1.06L8.53,15.78A.75.75,0,0,1,8,16Z" />
  12. </SvgIcon>
  13. );
  14. });
  15. IconExpand.displayName = 'IconExpand';
  16. export {IconExpand};