@navinc/base-react-components
Version:
Nav's Pattern Library
10 lines (7 loc) • 987 B
JavaScript
import React from 'react'
const CirclePlay = (props) => (
<svg fill="currentcolor" width="24" height="24" viewBox="0 0 24 24" data-testid="icon:circle-play" {...props}>
<path d="M10.6,8.66666667 L10.6,15.3333333 L15.4,12 L10.6,8.66666667 Z M16.3038687,13.355853 L11.2670992,16.7564307 C10.5733825,17.2247939 9.65929654,16.9973934 9.22543108,16.2485175 C9.07811641,15.9942441 9,15.7003789 9,15.4004708 L9,8.59931555 C9,7.71603796 9.66329746,7 10.4815163,7 C10.7593344,7 11.0315547,7.08432765 11.2670992,7.2433557 L16.3038687,10.6439333 C16.9975854,11.1122966 17.2082365,12.0990639 16.774371,12.8479398 C16.6552405,13.0535657 16.494349,13.2272502 16.3038687,13.355853 Z M12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 C17.5228475,2 22,6.4771525 22,12 C22,17.5228475 17.5228475,22 12,22 Z M12,20 C16.418278,20 20,16.418278 20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 Z" />
</svg>
)
export default CirclePlay