tailwindlabs / heroicons

A set of free MIT-licensed high-quality SVG icons for UI development.
https://heroicons.com
MIT License
21.36k stars 1.28k forks source link

Shield icons size #203

Closed Manubi closed 3 years ago

Manubi commented 3 years ago

Hey! I guess the ShieldIcons have a different standard size?

CleanShot 2021-02-26 at 11 45 14

const SvgShieldCheck = (props: IconProps) => (
    <svg
        fill={props.fill}
        viewBox="0 0 24 24"
        style={props.style}
        className={props.className}
        stroke="currentColor"
        {...props}
    >
        <path
            strokeLinecap="round"
            strokeLinejoin="round"
            strokeWidth="2"
            d="M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z"
        />
    </svg>
);
const SvgShieldExclamation = (props: IconProps) => (
    <svg
        fill={props.fill}
        viewBox="0 0 24 24"
        style={props.style}
        className={props.className}
        stroke="currentColor"
        {...props}
    >
        <path
            strokeLinecap="round"
            strokeLinejoin="round"
            strokeWidth={2}
            d="M20.618 5.984A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016zM12 9v2m0 4h.01"
        />
    </svg>
);