semantic-styled-ui
Version:
Set of UI components based of Semantic UI with Styled Components
33 lines (30 loc) • 641 B
TypeScript
import * as React from "react"
export interface FooterContentProps {
/**
* format content as stacked
*/
stacked?: boolean
/**
* you!
*/
developerName?: React.ReactNode
/**
* your website or blog or whatever
*/
developerLink?: string
/**
* stylistically format text as lower case
*/
lowerCased?: boolean
/**
* company that holds copyright
*/
copyright?: string
/**
* date the copyright began, displays as year.
*
* expands to include range from provided date to current year when they don't match
*/
date?: string
}
declare const FooterContent: React.FC<FooterContentProps>