@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 603 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 FormatAlignTopIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M13,15L15.5,17.5L16.92,16.08L12,11.16L7.08,16.08L8.5,17.5L11,15V21H13V15M3,3H21V5H3V3M3,7H13V9H3V7Z' />
</Svg>
)
FormatAlignTopIcon.displayName = 'FormatAlignTopIcon'
FormatAlignTopIcon.defaultProps = {
size: 24
}
export default FormatAlignTopIcon