Browse, search, and copy 3200+ free SVG icons for popular brands from Simple Icons.
We ask that all users read our legal disclaimer before using icons from Simple Icons.
cdn.simpleicons.org
, jsDelivr, or unpkg to clipboardThis extensions follows Raycast Cross-Extension Conventions.
You can use launchCommand
to use this extension search result.
launchFromExtensionTitle
Type: string
Default: undefined
You can specify the navigationTitle
when launching this extension.
showCopyActions
Type: boolean
Default: false
Copy actions are disabled by default. Set it to true
to enable copy actions.
callbackLaunchOptions
Type: LaunchOptions
Default: undefined
Use this option to let this extension know what kind of callback needs to be performed when launchCommand
.
icon
Type: IconData
It returns the icon data.
import { crossLaunchCommand } from "raycast-cross-extension";
crossLaunchCommand({
name: "index",
type: LaunchType.UserInitiated,
extensionName: "simple-icons",
ownerOrAuthorName: "litomore",
context: {
launchFromExtensionTitle: "Badges - shields.io",
},
});
import { LaunchProps } from "@raycast/api";
type LaunchContext = {
icon: IconData;
};
export default function Command({ launchContext = {} }: LaunchProps<{ launchContext?: LaunchContext }>) {
const { icon } = launchContext;
// ...
}
MIT