This website collects cookies to deliver better user experience
interface IFluentIconsProps { primaryFill?: string; className?: string; size?: number; } export const Settings24Regular = (iconProps: IFluentIconsProps) => { let { primaryFill, className, size } = iconProps; if (!size) { size = 24; } return ( <svg width={size} height={size} viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" className={className} fill={primaryFill} > <path d="(...removed for brevity...)" fill="#212121" /> </svg> ); };
npm install @fluentui/svg-icons
import Settings24Regular from "@fluentui/svg-icons/icons/settings_24_regular.svg?raw";`
const SmallIcon = styled("div")` svg { width: 40px; height: 40px; fill: rebeccapurple; } flex-shrink: 0; `;
<SmallIcon innerHTML={Settings24Regular}></SmallIcon>
39
0