This component no longer exists. It was in neobrutal-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Star 1
neobrutal-ui/s1RemovedComponent
neobrutal-ui publishes no description for this item.
Install it
npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/s1.jsonSource
1/**2 * @preview 3 */4export default function Star1({5 color,6 size,7 stroke,8 strokeWidth,9 pathClassName,10 width,11 height,12 ...props13}: React.SVGProps<SVGSVGElement> & {14 color?: string;15 size?: number;16 stroke?: string;17 pathClassName?: string;18 strokeWidth?: number;19}) {20 return (21 <svg22 xmlns="http://www.w3.org/2000/svg"23 fill="none"24 viewBox="0 0 200 200"25 width={size ?? width}26 height={size ?? height}27 {...props}28 >29 <path30 fill={color ?? "currentColor"}31 stroke={stroke}32 strokeWidth={strokeWidth}33 className={pathClassName}34 d="M158.682 195 100 127.008 41.219 195l43.344-79.687L5 77.551l85.5 18.732L100 5l9.5 91.283L195 77.65l-79.661 37.663z"35 />36 </svg>37 );38}
