gocodebox/lifterlms

View on GitHub
src/blocks/course-prerequisites/icon.jsx

Summary

Maintainability
A
50 mins
Test Coverage
// WordPress dependencies.
import { SVG, Path } from '@wordpress/primitives';

// FontAwesome list-check solid.
const Icon = () => (
    <SVG
        className="llms-block-icon"
        xmlns="http://www.w3.org/2000/svg"
        viewBox="0 0 512 512"
    >
        <Path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512zM369 209L241 337c-9.4 9.4-24.6 9.4-33.9 0l-64-64c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l47 47L335 175c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9z"
        />
    </SVG>
);

export default Icon;