
import React from 'react';
export const List = ({fill="currentColor",...other}) => {
  return <svg width='1.33em' height='1.33em' fill={fill} viewBox="0 0 512 512" {...other}>
<path d="M160 144h288M160 256h288M160 368h288" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="48"/>

<circle cx="80" cy="144" r="16" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>

<circle cx="80" cy="256" r="16" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>

<circle cx="80" cy="368" r="16" fill="none" stroke={fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth="32"/>
</svg>;
};
