semantic-ui-react
Version:
The official Semantic-UI-React integration.
19 lines (12 loc) • 442 B
TypeScript
import * as React from 'react'
import { SemanticVERTICALALIGNMENTS } from '../..'
import { IconProps } from '../Icon'
export interface ListIconProps extends IconProps {
[key: string]: any
/** Additional classes. */
className?: string
/** An element inside a list can be vertically aligned. */
verticalAlign?: SemanticVERTICALALIGNMENTS
}
declare const ListIcon: React.StatelessComponent<ListIconProps>
export default ListIcon