UNPKG

flowbite-angular

Version:

<div align="center"> <h1>:construction: flowbite-angular (unreleased) :construction:</h1> <p> <a href="https://flowbite.com"> <img alt="Flowbite - Tailwind CSS components" width="350" src="https://flowbite.s3.amazonaws.com/github/logo-github

40 lines (39 loc) 1.14 kB
import type { DeepPartial, FlowbiteClass, FlowbiteColors, FlowbitePositions } from 'flowbite-angular'; /** * Available colors for `ScrollTopComponent` */ export interface ScrollTopColors extends Pick<FlowbiteColors, 'primary' | 'dark' | 'blue' | 'gray' | 'green' | 'lime' | 'purple' | 'red'> { [key: string]: string; } /** * Available positions for `ScrollTopComponent` */ export interface ScrollTopPositions extends Omit<FlowbitePositions, 'center'> { [key: string]: string; } /** * Required properties for the class generation for `ScrollTopComponent` */ export interface ScrollTopProperties { color: keyof ScrollTopColors; position: keyof ScrollTopPositions; customStyle: DeepPartial<ScrollTopTheme>; } /** * Theme definition for `ScrollTopComponent` */ export interface ScrollTopTheme { root: { base: string; color: ScrollTopColors; position: ScrollTopPositions; }; } /** * Default theme for `ScrollTopComponent` */ export declare const scrollTopTheme: ScrollTopTheme; /** * Generated class definition for `ScrollTopComponent` */ export type ScrollTopClass = FlowbiteClass;