import * as React from "react"; import type { FC } from "react"; interface IconProps { size?: number; } export const SettingsIcon: FC = ({ size = 14 }) => ( );