@primer/react-brand
Version:
Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.
10 lines (9 loc) • 396 B
TypeScript
type ExpandableArrowProps = {
className?: string;
/** Animate between a chevron arrow and an arrow with a stem by toggling the value of `expanded` */
expanded?: boolean;
hidden?: boolean;
reverse?: boolean;
};
export declare function ExpandableArrow({ className, expanded, reverse, hidden, ...rest }: ExpandableArrowProps): import("react/jsx-runtime").JSX.Element;
export {};