cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
15 lines (14 loc) • 438 B
TypeScript
import { default as React } from 'react';
interface SpaceProps {
$size?: number | "none";
$xs?: number | "none";
$sm?: number | "none";
$md?: number | "none";
$lg?: number | "none";
$xl?: number | "none";
$xxl?: number | "none";
$xxxl?: number | "none";
$horizontal?: boolean;
}
declare const Space: React.ForwardRefExoticComponent<SpaceProps & React.RefAttributes<HTMLSpanElement>>;
export { Space };