UNPKG

@lessondesk/material-icons

Version:

Material Icon SVGs as React Components

28 lines (23 loc) 732 B
import React from 'react' import styled from 'styled-components' import { space, color } from 'styled-system' const Svg = styled('svg')({ flex: 'none' }, space, color) const PictureInPictureTopRightOutlineIcon = ({ size, ...props }) => ( <Svg {...props} viewBox='0 0 24 24' width={size} height={size} fill='currentcolor' > <path d='M19,7H11V13H19V7M17,11H13V9H17V11M21,3H3C1.9,3 1,3.9 1,5V19C1,20.11 1.9,21 3,21H21C22.1,21 23,20.1 23,19V5C23,3.91 22.1,3 21,3M21,19H3V5H21V19Z' /> </Svg> ) PictureInPictureTopRightOutlineIcon.displayName = 'PictureInPictureTopRightOutlineIcon' PictureInPictureTopRightOutlineIcon.defaultProps = { size: 24 } export default PictureInPictureTopRightOutlineIcon