style(item): remove console log and outdated docs

This commit is contained in:
Brandy Carney
2018-08-09 18:10:27 -04:00
parent 997cda0667
commit 4ec038d507
2 changed files with 2 additions and 4 deletions

View File

@ -2171,7 +2171,7 @@ declare global {
interface IonSkeletonText {
/**
* The width of the element. Defaults to: `"100%"`.
* Width for the element to render at. Default is 100%
*/
'width': string;
}
@ -5763,7 +5763,7 @@ declare global {
export interface IonSkeletonTextAttributes extends HTMLAttributes {
/**
* The width of the element. Defaults to: `"100%"`.
* Width for the element to render at. Default is 100%
*/
'width'?: string;
}

View File

@ -146,8 +146,6 @@ export class Item {
const attrs = TagType === 'button' ? { type } : { href };
const showDetail = detail != null ? detail : mode === 'ios' && clickable;
console.log('item state', state);
return (
<TagType
{...attrs}