wix-style-react
Version:
15 lines (13 loc) • 384 B
JavaScript
import React from 'react';
export default ({ className }) => (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="currentcolor"
viewBox="0 0 15 15"
width="12"
height="12"
className={className}
>
<polygon points="13.5 2.914 12.086 1.5 7.5 6.086 2.914 1.5 1.5 2.914 6.086 7.5 1.5 12.086 2.914 13.5 7.5 8.914 12.086 13.5 13.5 12.086 8.914 7.5" />
</svg>
);