import React from 'react'; interface Props { size?: number; } export default ({ size = 24 }: Props) => ( );