/// <reference types="react" />
declare type Props = {
    color?: string;
};
declare const LineIcon: ({ color }: Props) => JSX.Element;
export default LineIcon;
