@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 771 B
JavaScript
import React from 'react'
import styled from 'styled-components'
import { space, color } from 'styled-system'
const Svg = styled('svg')({ flex: 'none' }, space, color)
const ContentSaveMoveIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17,3H5C3.9,3 3,3.9 3,5V19C3,20.1 3.9,21 5,21H11.81C11.42,20.34 11.17,19.6 11.07,18.84C9.5,18.31 8.66,16.6 9.2,15.03C9.61,13.83 10.73,13 12,13C12.44,13 12.88,13.1 13.28,13.29C15.57,11.5 18.83,11.59 21,13.54V7L17,3M15,9H5V5H15V9M13,17H17V14L22,18.5L17,23V20H13V17' />
</Svg>
)
ContentSaveMoveIcon.displayName = 'ContentSaveMoveIcon'
ContentSaveMoveIcon.defaultProps = {
size: 24
}
export default ContentSaveMoveIcon