@lessondesk/material-icons
Version:
Material Icon SVGs as React Components
28 lines (23 loc) • 652 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 PlaylistStarIcon = ({
size,
...props
}) => (
<Svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill='currentcolor'
>
<path d='M17,19.09L19.45,20.58L18.8,17.77L21,15.89L18.11,15.64L17,13L15.87,15.64L13,15.89L15.18,17.77L14.5,20.58L17,19.09M4,14H12V16H4V14M4,6H16V8H4V6M4,10H16V12H4V10Z' />
</Svg>
)
PlaylistStarIcon.displayName = 'PlaylistStarIcon'
PlaylistStarIcon.defaultProps = {
size: 24
}
export default PlaylistStarIcon