Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 176x | interface IconProps {
height?: number;
width?: number;
fill?: string;
stroke?: string;
}
const HeadlineIcon = ({
width = 33,
height = 32,
fill = "#F4F3F7",
stroke = "#727179",
}: IconProps) => {
return (
<svg
width="32"
height="32"
viewBox="0 0 32 32"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<rect width="32" height="32" rx="4" fill={fill} />
<path
d="M9.02051 23.3428V7.0625H12.4626V13.7797H19.4501V7.0625H22.8842V23.3428H19.4501V16.6176H12.4626V23.3428H9.02051Z"
fill={stroke}
/>
</svg>
);
};
export default HeadlineIcon;
|