10 lines
184 B
JavaScript
10 lines
184 B
JavaScript
|
|
import { PrinterOutlined } from "@ant-design/icons";
|
||
|
|
|
||
|
|
const PrintIcon = props => (
|
||
|
|
<PrinterOutlined {...props} />
|
||
|
|
);
|
||
|
|
|
||
|
|
PrintIcon.displayName = "PrintIcon";
|
||
|
|
|
||
|
|
export default PrintIcon;
|