cherry-styled-components
Version:
Cherry is a design system for the modern web. Designed in Figma, built in React using Typescript.
21 lines (20 loc) • 1.89 kB
TypeScript
import { Theme } from './theme';
declare const styledHero1: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledHero2: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledHero3: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH1: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH2: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH3: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH4: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH5: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledH6: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledText: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledStrong: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledSmall: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledBlockquote: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledCode: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledButton: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledButtonBig: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledInput: (theme: Theme) => import('styled-components').RuleSet<object>;
declare const styledInputBig: (theme: Theme) => import('styled-components').RuleSet<object>;
export { styledHero1, styledHero2, styledHero3, styledH1, styledH2, styledH3, styledH4, styledH5, styledH6, styledText, styledStrong, styledSmall, styledBlockquote, styledCode, styledButton, styledButtonBig, styledInput, styledInputBig, };