@pomegranate-ui/maracuya-ui
Version:
Maracuya is a design system built with React, Typescript & emotion
16 lines (15 loc) • 447 B
TypeScript
/**
* File Name: List
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export interface Ilist extends ICoreBase {
type?: Type;
variant?: Variant;
inline?: boolean;
}
declare type Type = 'bullet' | 'number';
declare type Variant = 'bordered' | 'bordered-underline';
export declare const List: React.ForwardRefExoticComponent<Ilist & React.RefAttributes<HTMLOListElement>>;
export {};