semantic-styled-ui
Version:
Set of UI components based of Semantic UI with Styled Components
23 lines (20 loc) • 459 B
TypeScript
import * as React from "react"
export interface HeroSubtitleProps {
/**
* what the main content is rendered as
*/
as?: React.ElementType
/**
* apply css supported color string to Icon and text, overrides theme / default
*/
color?: string
/**
* format logo left of content
*/
inlineLogo?: React.ReactNode
/**
* text-based content
*/
children?: React.ReactNode
}
declare const HeroSubtitle: React.FC<HeroSubtitleProps>