vant/packages/icon/index.tsx
2019-02-19 11:31:55 +08:00

63 lines
1.2 KiB
TypeScript

import { use } from '../utils';
import { inherit } from '../utils/functional';
import Info from '../info';
import isSrc from '../utils/validate/src';
// Types
import { CreateElement, RenderContext } from 'vue/types';
import { DefaultSlots } from '../utils/use/sfc';
export type IconProps = {
name: string;
size?: string;
color?: string;
info?: string | number;
classPrefix: string;
};
export type IconEvents = {
onClick?(event: Event): void;
};
const [sfc] = use('icon');
function Icon(
h: CreateElement,
props: IconProps,
slots: DefaultSlots,
ctx: RenderContext<IconProps>
) {
const urlIcon = isSrc(props.name);
return (
<i
class={[
props.classPrefix,
urlIcon ? 'van-icon--image' : `${props.classPrefix}-${props.name}`
]}
style={{
color: props.color,
fontSize: props.size
}}
{...inherit(ctx, true)}
>
{slots.default && slots.default()}
{urlIcon && <img src={props.name} />}
<Info info={props.info} />
</i>
);
}
Icon.props = {
name: String,
size: String,
color: String,
info: [String, Number],
classPrefix: {
type: String,
default: 'van-icon'
}
};
export default sfc<IconProps, IconEvents>(Icon);