hoda-react
Version:
<div align="center"> <h1>:construction: flowbite-react (unreleased) :construction:</h1> <p> <a href="https://flowbite-react.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src=".github/assets/flowbite-react-github.png"> <
11 lines (10 loc) • 550 B
TypeScript
import type { ComponentProps, FC, PropsWithChildren } from 'react';
import type { FlowbiteColors } from '../Flowbite/FlowbiteTheme';
export interface SidebarCTAProps extends PropsWithChildren<Omit<ComponentProps<'div'>, 'color'>> {
color?: keyof SidebarCTAColors;
}
export interface SidebarCTAColors extends Pick<FlowbiteColors, 'blue' | 'dark' | 'failure' | 'gray' | 'green' | 'light' | 'purple' | 'red' | 'success' | 'warning' | 'yellow'> {
[key: string]: string;
}
declare const SidebarCTA: FC<SidebarCTAProps>;
export default SidebarCTA;