@ftdata/icons
Version:
Fulltime Styleguide Icons
9 lines (8 loc) • 325 B
TypeScript
/// <reference types="react" />
import { CommonIconProps } from '..';
export declare type IconsSecurity = 'sec target-1' | 'sec lock';
interface SecurityProps extends CommonIconProps {
name: IconsSecurity;
}
export default function Security({ color, name, size, weight, ...rest }: SecurityProps): JSX.Element;
export {};