import React from "react";
export default function IconLightMode(props) {
return (
<svg
width={24}
height={24}
{...props}
viewBox="0 0 24 24"
fill="red"
xmlns="http://www.w3.org/2000/svg">
<path
d="M11.5 3.88463V1.5L12.5 1.5V3.88463H11.5ZM11.5 22.5V20.1154H12.5V22.5H11.5ZM20.1154 12.5V11.5H22.5V12.5H20.1154ZM1.5 12.5L1.5 11.5H3.88462V12.5H1.5ZM18.3154 6.3923L17.6077 5.68463L19.05 4.23078L19.7692 4.95L18.3154 6.3923ZM4.95 19.7692L4.23078 19.05L5.68463 17.6077L6.3923 18.3154L4.95 19.7692ZM19.05 19.7692L17.6077 18.3154L18.3154 17.6077L19.7692 19.05L19.05 19.7692ZM5.68463 6.3923L4.23078 4.95L4.95 4.23078L6.3923 5.68463L5.68463 6.3923ZM12.0045 17C10.6169 17 9.43589 16.5143 8.46152 15.543C7.48717 14.5716 7 13.3922 7 12.0045C7 10.6169 7.48567 9.43589 8.457 8.46152C9.42835 7.48717 10.6078 7 11.9955 7C13.3831 7 14.5641 7.48567 15.5385 8.457C16.5128 9.42835 17 10.6078 17 11.9955C17 13.3831 16.5143 14.5641 15.543 15.5385C14.5716 16.5128 13.3922 17 12.0045 17ZM12 16C13.1167 16 14.0625 15.6125 14.8375 14.8375C15.6125 14.0625 16 13.1167 16 12C16 10.8833 15.6125 9.9375 14.8375 9.1625C14.0625 8.3875 13.1167 8 12 8C10.8833 8 9.9375 8.3875 9.1625 9.1625C8.3875 9.9375 8 10.8833 8 12C8 13.1167 8.3875 14.0625 9.1625 14.8375C9.9375 15.6125 10.8833 16 12 16Z"
fill="var(--text-secondary)"
/>
</svg>
);
}