blob: cd4cbb29ce89e5c708c3c6d8a2dd0fc302609203 (
plain)
1
2
3
4
5
|
import * as React from "react";
const IconCheck = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-check" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M5 12l5 5l10 -10" /></svg>;
export default IconCheck;
|