@danilandreev/material-docs
Version:
material-docs - react framework for easy creating documentation site in material design style.
37 lines (33 loc) • 936 B
TypeScript
/*
* Author: Andrieiev Danil | danssg08@gmail.com | https://github.com/DanilAndreev
* Copyright (C) 2020.
*/
/// <reference types="react" />
import Containerable from "../../interfaces/Containerable";
import Stylable from "../../interfaces/Stylable";
export const displayName: string;
export interface ListProps
extends Containerable, Stylable {
/**
* image - list styling image. If defined - will be applied to list-style-image style.
* @type string
*/
image?: string;
/**
* styling - list styling type.
* @default "inside"
* @type string
*/
styling?: "inside" | "outside" | "inherit" | "revert" | "unset";
}
/**
* List - list container for <ListItem /> components.
* @param {ListProps} props
* @constructor
* @see http://material-docs.com/component-apis/list
* @example
* <List>
* ...
* </List>
*/
export default function List(props: ListProps): JSX.Element;