SocialIcons
Install
Section titled “Install”npx stylesheet-ui add social-iconsnpx expo install react-native-svgA set of single-color brand marks — GoogleIcon, AppleIcon, GitHubIcon, MicrosoftIcon, FacebookIcon, XIcon, DiscordIcon, GitLabIcon, LinkedInIcon, SlackIcon, TwitchIcon. Each defaults to your theme’s foreground color; pass color to override and size to scale. They’re built with react-native-svg, so they render crisply at any size.
import { GoogleIcon, AppleIcon, GitHubIcon } from "@/components/ui/social-icons";
<GoogleIcon /> // themed foreground, size 20<AppleIcon size={28} /><GitHubIcon color="#fff" />Drop them straight into SocialAuthButtons via each provider’s icon:
const providers = [ { key: "google", label: "Continue with Google", icon: <GoogleIcon /> }, { key: "apple", label: "Continue with Apple", icon: <AppleIcon /> }, { key: "github", label: "Continue with GitHub", icon: <GitHubIcon /> },];
<SocialAuthButtons layout="row" providers={providers} onSelect={startOAuth} />Need another provider? The file is yours — copy an existing icon, swap in the brand’s SVG path (e.g. from Simple Icons), and export it.